@atlaskit/code 15.2.0 → 15.3.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.
Files changed (69) hide show
  1. package/CHANGELOG.md +653 -645
  2. package/__perf__/code-block-syntax-highlighting.tsx +4 -1
  3. package/__perf__/source-code-examples/100-line-example.tsx +52 -40
  4. package/codemods/13.0.0-remove-unnecessary-code-props.tsx +61 -75
  5. package/codemods/13.0.0-rename-imports.tsx +214 -251
  6. package/codemods/14.0.0-lite-mode.tsx +5 -9
  7. package/codemods/__tests__/13.0.0-remove-unnecessary-code-props.tsx +43 -43
  8. package/codemods/__tests__/13.0.0-rename-imports.tsx +143 -143
  9. package/codemods/__tests__/14.0.0-lite-mode/14.0.0-lite-mode.tsx +35 -35
  10. package/codemods/__tests__/14.0.0-lite-mode/remove-language.tsx +21 -21
  11. package/codemods/__tests__/14.0.0-lite-mode/text-to-child.tsx +35 -35
  12. package/codemods/migrations/14.0.0-lite-mode/remove-language.tsx +1 -6
  13. package/codemods/migrations/14.0.0-lite-mode/text-to-child.tsx +53 -61
  14. package/codemods/utils/helpers.tsx +161 -201
  15. package/dist/cjs/bidi-warning/ui/styled.js +7 -0
  16. package/dist/cjs/code-block.js +8 -1
  17. package/dist/cjs/code.js +5 -0
  18. package/dist/cjs/internal/theme/styles.js +3 -2
  19. package/dist/cjs/syntax-highlighter/types.js +1 -0
  20. package/dist/es2019/bidi-warning/ui/styled.js +7 -0
  21. package/dist/es2019/code-block.js +8 -1
  22. package/dist/es2019/code.js +6 -0
  23. package/dist/es2019/internal/theme/styles.js +4 -1
  24. package/dist/es2019/syntax-highlighter/types.js +3 -0
  25. package/dist/esm/bidi-warning/ui/styled.js +7 -0
  26. package/dist/esm/code-block.js +8 -1
  27. package/dist/esm/code.js +6 -0
  28. package/dist/esm/internal/theme/styles.js +4 -1
  29. package/dist/esm/syntax-highlighter/types.js +3 -0
  30. package/dist/types/bidi-warning/ui/index.d.ts +1 -1
  31. package/dist/types/bidi-warning/ui/styled.d.ts +4 -1
  32. package/dist/types/code.d.ts +3 -0
  33. package/dist/types/extract-react-types/code-block.d.ts +16 -16
  34. package/dist/types/internal/hooks/use-highlight.d.ts +1 -1
  35. package/dist/types/internal/utils/get-normalized-language.d.ts +1 -1
  36. package/dist/types/syntax-highlighter/async.d.ts +1 -1
  37. package/dist/types/syntax-highlighter/lib/highlight.d.ts +1 -1
  38. package/dist/types/syntax-highlighter/lib/process/create-line-element.d.ts +1 -1
  39. package/dist/types/syntax-highlighter/lib/process/create-line.d.ts +1 -1
  40. package/dist/types/syntax-highlighter/lib/process/flatten-code-tree.d.ts +1 -1
  41. package/dist/types/syntax-highlighter/lib/process/get-code-tree.d.ts +1 -1
  42. package/dist/types/syntax-highlighter/lib/process/get-inline-line-number.d.ts +1 -1
  43. package/dist/types/syntax-highlighter/lib/process/index.d.ts +1 -1
  44. package/dist/types/syntax-highlighter/lib/react-renderer/create-children.d.ts +2 -2
  45. package/dist/types/syntax-highlighter/lib/react-renderer/create-element.d.ts +2 -2
  46. package/dist/types/syntax-highlighter/lib/react-renderer/index.d.ts +1 -1
  47. package/dist/types/syntax-highlighter/types.d.ts +2 -2
  48. package/dist/types/types.d.ts +1 -1
  49. package/dist/types-ts4.5/bidi-warning/ui/index.d.ts +1 -1
  50. package/dist/types-ts4.5/bidi-warning/ui/styled.d.ts +4 -1
  51. package/dist/types-ts4.5/code.d.ts +3 -0
  52. package/dist/types-ts4.5/extract-react-types/code-block.d.ts +16 -16
  53. package/dist/types-ts4.5/internal/hooks/use-highlight.d.ts +1 -1
  54. package/dist/types-ts4.5/internal/utils/get-normalized-language.d.ts +1 -1
  55. package/dist/types-ts4.5/syntax-highlighter/async.d.ts +1 -1
  56. package/dist/types-ts4.5/syntax-highlighter/lib/highlight.d.ts +1 -1
  57. package/dist/types-ts4.5/syntax-highlighter/lib/process/create-line-element.d.ts +1 -1
  58. package/dist/types-ts4.5/syntax-highlighter/lib/process/create-line.d.ts +1 -1
  59. package/dist/types-ts4.5/syntax-highlighter/lib/process/flatten-code-tree.d.ts +1 -1
  60. package/dist/types-ts4.5/syntax-highlighter/lib/process/get-code-tree.d.ts +1 -1
  61. package/dist/types-ts4.5/syntax-highlighter/lib/process/get-inline-line-number.d.ts +1 -1
  62. package/dist/types-ts4.5/syntax-highlighter/lib/process/index.d.ts +1 -1
  63. package/dist/types-ts4.5/syntax-highlighter/lib/react-renderer/create-children.d.ts +2 -2
  64. package/dist/types-ts4.5/syntax-highlighter/lib/react-renderer/create-element.d.ts +2 -2
  65. package/dist/types-ts4.5/syntax-highlighter/lib/react-renderer/index.d.ts +1 -1
  66. package/dist/types-ts4.5/syntax-highlighter/types.d.ts +2 -2
  67. package/dist/types-ts4.5/types.d.ts +1 -1
  68. package/package.json +108 -110
  69. package/report.api.md +807 -807
package/report.api.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  ## API Report File for "@atlaskit/code"
4
4
 
5
- > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using
6
+ > [API Extractor](https://api-extractor.com/).
6
7
  > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
8
 
8
9
  ### Table of contents
@@ -25,376 +26,376 @@ import type { ReactNode } from 'react';
25
26
 
26
27
  // @public
27
28
  export const Code: React_2.MemoExoticComponent<
28
- React_2.ForwardRefExoticComponent<
29
- Pick<
30
- CodeProps,
31
- | 'about'
32
- | 'accept'
33
- | 'acceptCharset'
34
- | 'accessKey'
35
- | 'action'
36
- | 'allowFullScreen'
37
- | 'allowTransparency'
38
- | 'alt'
39
- | 'aria-activedescendant'
40
- | 'aria-atomic'
41
- | 'aria-autocomplete'
42
- | 'aria-busy'
43
- | 'aria-checked'
44
- | 'aria-colcount'
45
- | 'aria-colindex'
46
- | 'aria-colspan'
47
- | 'aria-controls'
48
- | 'aria-current'
49
- | 'aria-describedby'
50
- | 'aria-details'
51
- | 'aria-disabled'
52
- | 'aria-dropeffect'
53
- | 'aria-errormessage'
54
- | 'aria-expanded'
55
- | 'aria-flowto'
56
- | 'aria-grabbed'
57
- | 'aria-haspopup'
58
- | 'aria-hidden'
59
- | 'aria-invalid'
60
- | 'aria-keyshortcuts'
61
- | 'aria-label'
62
- | 'aria-labelledby'
63
- | 'aria-level'
64
- | 'aria-live'
65
- | 'aria-modal'
66
- | 'aria-multiline'
67
- | 'aria-multiselectable'
68
- | 'aria-orientation'
69
- | 'aria-owns'
70
- | 'aria-placeholder'
71
- | 'aria-posinset'
72
- | 'aria-pressed'
73
- | 'aria-readonly'
74
- | 'aria-relevant'
75
- | 'aria-required'
76
- | 'aria-roledescription'
77
- | 'aria-rowcount'
78
- | 'aria-rowindex'
79
- | 'aria-rowspan'
80
- | 'aria-selected'
81
- | 'aria-setsize'
82
- | 'aria-sort'
83
- | 'aria-valuemax'
84
- | 'aria-valuemin'
85
- | 'aria-valuenow'
86
- | 'aria-valuetext'
87
- | 'as'
88
- | 'async'
89
- | 'autoCapitalize'
90
- | 'autoComplete'
91
- | 'autoCorrect'
92
- | 'autoFocus'
93
- | 'autoPlay'
94
- | 'autoSave'
95
- | 'capture'
96
- | 'cellPadding'
97
- | 'cellSpacing'
98
- | 'challenge'
99
- | 'charSet'
100
- | 'checked'
101
- | 'children'
102
- | 'cite'
103
- | 'classID'
104
- | 'className'
105
- | 'codeBidiWarningLabel'
106
- | 'codeBidiWarningTooltipEnabled'
107
- | 'codeBidiWarnings'
108
- | 'colSpan'
109
- | 'color'
110
- | 'cols'
111
- | 'content'
112
- | 'contentEditable'
113
- | 'contextMenu'
114
- | 'controls'
115
- | 'coords'
116
- | 'crossOrigin'
117
- | 'dangerouslySetInnerHTML'
118
- | 'data'
119
- | 'datatype'
120
- | 'dateTime'
121
- | 'default'
122
- | 'defaultChecked'
123
- | 'defaultValue'
124
- | 'defer'
125
- | 'dir'
126
- | 'disabled'
127
- | 'download'
128
- | 'draggable'
129
- | 'encType'
130
- | 'form'
131
- | 'formAction'
132
- | 'formEncType'
133
- | 'formMethod'
134
- | 'formNoValidate'
135
- | 'formTarget'
136
- | 'frameBorder'
137
- | 'headers'
138
- | 'height'
139
- | 'hidden'
140
- | 'high'
141
- | 'href'
142
- | 'hrefLang'
143
- | 'htmlFor'
144
- | 'httpEquiv'
145
- | 'id'
146
- | 'inlist'
147
- | 'inputMode'
148
- | 'integrity'
149
- | 'is'
150
- | 'itemID'
151
- | 'itemProp'
152
- | 'itemRef'
153
- | 'itemScope'
154
- | 'itemType'
155
- | 'key'
156
- | 'keyParams'
157
- | 'keyType'
158
- | 'kind'
159
- | 'label'
160
- | 'lang'
161
- | 'list'
162
- | 'loop'
163
- | 'low'
164
- | 'manifest'
165
- | 'marginHeight'
166
- | 'marginWidth'
167
- | 'max'
168
- | 'maxLength'
169
- | 'media'
170
- | 'mediaGroup'
171
- | 'method'
172
- | 'min'
173
- | 'minLength'
174
- | 'multiple'
175
- | 'muted'
176
- | 'name'
177
- | 'noValidate'
178
- | 'nonce'
179
- | 'onAbort'
180
- | 'onAbortCapture'
181
- | 'onAnimationEnd'
182
- | 'onAnimationEndCapture'
183
- | 'onAnimationIteration'
184
- | 'onAnimationIterationCapture'
185
- | 'onAnimationStart'
186
- | 'onAnimationStartCapture'
187
- | 'onAuxClick'
188
- | 'onAuxClickCapture'
189
- | 'onBeforeInput'
190
- | 'onBeforeInputCapture'
191
- | 'onBlur'
192
- | 'onBlurCapture'
193
- | 'onCanPlay'
194
- | 'onCanPlayCapture'
195
- | 'onCanPlayThrough'
196
- | 'onCanPlayThroughCapture'
197
- | 'onChange'
198
- | 'onChangeCapture'
199
- | 'onClick'
200
- | 'onClickCapture'
201
- | 'onCompositionEnd'
202
- | 'onCompositionEndCapture'
203
- | 'onCompositionStart'
204
- | 'onCompositionStartCapture'
205
- | 'onCompositionUpdate'
206
- | 'onCompositionUpdateCapture'
207
- | 'onContextMenu'
208
- | 'onContextMenuCapture'
209
- | 'onCopy'
210
- | 'onCopyCapture'
211
- | 'onCut'
212
- | 'onCutCapture'
213
- | 'onDoubleClick'
214
- | 'onDoubleClickCapture'
215
- | 'onDrag'
216
- | 'onDragCapture'
217
- | 'onDragEnd'
218
- | 'onDragEndCapture'
219
- | 'onDragEnter'
220
- | 'onDragEnterCapture'
221
- | 'onDragExit'
222
- | 'onDragExitCapture'
223
- | 'onDragLeave'
224
- | 'onDragLeaveCapture'
225
- | 'onDragOver'
226
- | 'onDragOverCapture'
227
- | 'onDragStart'
228
- | 'onDragStartCapture'
229
- | 'onDrop'
230
- | 'onDropCapture'
231
- | 'onDurationChange'
232
- | 'onDurationChangeCapture'
233
- | 'onEmptied'
234
- | 'onEmptiedCapture'
235
- | 'onEncrypted'
236
- | 'onEncryptedCapture'
237
- | 'onEnded'
238
- | 'onEndedCapture'
239
- | 'onError'
240
- | 'onErrorCapture'
241
- | 'onFocus'
242
- | 'onFocusCapture'
243
- | 'onGotPointerCapture'
244
- | 'onGotPointerCaptureCapture'
245
- | 'onInput'
246
- | 'onInputCapture'
247
- | 'onInvalid'
248
- | 'onInvalidCapture'
249
- | 'onKeyDown'
250
- | 'onKeyDownCapture'
251
- | 'onKeyPress'
252
- | 'onKeyPressCapture'
253
- | 'onKeyUp'
254
- | 'onKeyUpCapture'
255
- | 'onLoad'
256
- | 'onLoadCapture'
257
- | 'onLoadStart'
258
- | 'onLoadStartCapture'
259
- | 'onLoadedData'
260
- | 'onLoadedDataCapture'
261
- | 'onLoadedMetadata'
262
- | 'onLoadedMetadataCapture'
263
- | 'onLostPointerCapture'
264
- | 'onLostPointerCaptureCapture'
265
- | 'onMouseDown'
266
- | 'onMouseDownCapture'
267
- | 'onMouseEnter'
268
- | 'onMouseLeave'
269
- | 'onMouseMove'
270
- | 'onMouseMoveCapture'
271
- | 'onMouseOut'
272
- | 'onMouseOutCapture'
273
- | 'onMouseOver'
274
- | 'onMouseOverCapture'
275
- | 'onMouseUp'
276
- | 'onMouseUpCapture'
277
- | 'onPaste'
278
- | 'onPasteCapture'
279
- | 'onPause'
280
- | 'onPauseCapture'
281
- | 'onPlay'
282
- | 'onPlayCapture'
283
- | 'onPlaying'
284
- | 'onPlayingCapture'
285
- | 'onPointerCancel'
286
- | 'onPointerCancelCapture'
287
- | 'onPointerDown'
288
- | 'onPointerDownCapture'
289
- | 'onPointerEnter'
290
- | 'onPointerEnterCapture'
291
- | 'onPointerLeave'
292
- | 'onPointerLeaveCapture'
293
- | 'onPointerMove'
294
- | 'onPointerMoveCapture'
295
- | 'onPointerOut'
296
- | 'onPointerOutCapture'
297
- | 'onPointerOver'
298
- | 'onPointerOverCapture'
299
- | 'onPointerUp'
300
- | 'onPointerUpCapture'
301
- | 'onProgress'
302
- | 'onProgressCapture'
303
- | 'onRateChange'
304
- | 'onRateChangeCapture'
305
- | 'onReset'
306
- | 'onResetCapture'
307
- | 'onScroll'
308
- | 'onScrollCapture'
309
- | 'onSeeked'
310
- | 'onSeekedCapture'
311
- | 'onSeeking'
312
- | 'onSeekingCapture'
313
- | 'onSelect'
314
- | 'onSelectCapture'
315
- | 'onStalled'
316
- | 'onStalledCapture'
317
- | 'onSubmit'
318
- | 'onSubmitCapture'
319
- | 'onSuspend'
320
- | 'onSuspendCapture'
321
- | 'onTimeUpdate'
322
- | 'onTimeUpdateCapture'
323
- | 'onTouchCancel'
324
- | 'onTouchCancelCapture'
325
- | 'onTouchEnd'
326
- | 'onTouchEndCapture'
327
- | 'onTouchMove'
328
- | 'onTouchMoveCapture'
329
- | 'onTouchStart'
330
- | 'onTouchStartCapture'
331
- | 'onTransitionEnd'
332
- | 'onTransitionEndCapture'
333
- | 'onVolumeChange'
334
- | 'onVolumeChangeCapture'
335
- | 'onWaiting'
336
- | 'onWaitingCapture'
337
- | 'onWheel'
338
- | 'onWheelCapture'
339
- | 'open'
340
- | 'optimum'
341
- | 'pattern'
342
- | 'placeholder'
343
- | 'playsInline'
344
- | 'poster'
345
- | 'prefix'
346
- | 'preload'
347
- | 'property'
348
- | 'radioGroup'
349
- | 'readOnly'
350
- | 'rel'
351
- | 'required'
352
- | 'resource'
353
- | 'results'
354
- | 'reversed'
355
- | 'role'
356
- | 'rowSpan'
357
- | 'rows'
358
- | 'sandbox'
359
- | 'scope'
360
- | 'scoped'
361
- | 'scrolling'
362
- | 'seamless'
363
- | 'security'
364
- | 'selected'
365
- | 'shape'
366
- | 'size'
367
- | 'sizes'
368
- | 'slot'
369
- | 'span'
370
- | 'spellCheck'
371
- | 'src'
372
- | 'srcDoc'
373
- | 'srcLang'
374
- | 'srcSet'
375
- | 'start'
376
- | 'step'
377
- | 'style'
378
- | 'summary'
379
- | 'suppressContentEditableWarning'
380
- | 'suppressHydrationWarning'
381
- | 'tabIndex'
382
- | 'target'
383
- | 'testId'
384
- | 'title'
385
- | 'translate'
386
- | 'type'
387
- | 'typeof'
388
- | 'unselectable'
389
- | 'useMap'
390
- | 'value'
391
- | 'vocab'
392
- | 'width'
393
- | 'wmode'
394
- | 'wrap'
395
- > &
396
- React_2.RefAttributes<HTMLElement>
397
- >
29
+ React_2.ForwardRefExoticComponent<
30
+ Pick<
31
+ CodeProps,
32
+ | 'about'
33
+ | 'accept'
34
+ | 'acceptCharset'
35
+ | 'accessKey'
36
+ | 'action'
37
+ | 'allowFullScreen'
38
+ | 'allowTransparency'
39
+ | 'alt'
40
+ | 'aria-activedescendant'
41
+ | 'aria-atomic'
42
+ | 'aria-autocomplete'
43
+ | 'aria-busy'
44
+ | 'aria-checked'
45
+ | 'aria-colcount'
46
+ | 'aria-colindex'
47
+ | 'aria-colspan'
48
+ | 'aria-controls'
49
+ | 'aria-current'
50
+ | 'aria-describedby'
51
+ | 'aria-details'
52
+ | 'aria-disabled'
53
+ | 'aria-dropeffect'
54
+ | 'aria-errormessage'
55
+ | 'aria-expanded'
56
+ | 'aria-flowto'
57
+ | 'aria-grabbed'
58
+ | 'aria-haspopup'
59
+ | 'aria-hidden'
60
+ | 'aria-invalid'
61
+ | 'aria-keyshortcuts'
62
+ | 'aria-label'
63
+ | 'aria-labelledby'
64
+ | 'aria-level'
65
+ | 'aria-live'
66
+ | 'aria-modal'
67
+ | 'aria-multiline'
68
+ | 'aria-multiselectable'
69
+ | 'aria-orientation'
70
+ | 'aria-owns'
71
+ | 'aria-placeholder'
72
+ | 'aria-posinset'
73
+ | 'aria-pressed'
74
+ | 'aria-readonly'
75
+ | 'aria-relevant'
76
+ | 'aria-required'
77
+ | 'aria-roledescription'
78
+ | 'aria-rowcount'
79
+ | 'aria-rowindex'
80
+ | 'aria-rowspan'
81
+ | 'aria-selected'
82
+ | 'aria-setsize'
83
+ | 'aria-sort'
84
+ | 'aria-valuemax'
85
+ | 'aria-valuemin'
86
+ | 'aria-valuenow'
87
+ | 'aria-valuetext'
88
+ | 'as'
89
+ | 'async'
90
+ | 'autoCapitalize'
91
+ | 'autoComplete'
92
+ | 'autoCorrect'
93
+ | 'autoFocus'
94
+ | 'autoPlay'
95
+ | 'autoSave'
96
+ | 'capture'
97
+ | 'cellPadding'
98
+ | 'cellSpacing'
99
+ | 'challenge'
100
+ | 'charSet'
101
+ | 'checked'
102
+ | 'children'
103
+ | 'cite'
104
+ | 'classID'
105
+ | 'className'
106
+ | 'codeBidiWarningLabel'
107
+ | 'codeBidiWarningTooltipEnabled'
108
+ | 'codeBidiWarnings'
109
+ | 'colSpan'
110
+ | 'color'
111
+ | 'cols'
112
+ | 'content'
113
+ | 'contentEditable'
114
+ | 'contextMenu'
115
+ | 'controls'
116
+ | 'coords'
117
+ | 'crossOrigin'
118
+ | 'dangerouslySetInnerHTML'
119
+ | 'data'
120
+ | 'datatype'
121
+ | 'dateTime'
122
+ | 'default'
123
+ | 'defaultChecked'
124
+ | 'defaultValue'
125
+ | 'defer'
126
+ | 'dir'
127
+ | 'disabled'
128
+ | 'download'
129
+ | 'draggable'
130
+ | 'encType'
131
+ | 'form'
132
+ | 'formAction'
133
+ | 'formEncType'
134
+ | 'formMethod'
135
+ | 'formNoValidate'
136
+ | 'formTarget'
137
+ | 'frameBorder'
138
+ | 'headers'
139
+ | 'height'
140
+ | 'hidden'
141
+ | 'high'
142
+ | 'href'
143
+ | 'hrefLang'
144
+ | 'htmlFor'
145
+ | 'httpEquiv'
146
+ | 'id'
147
+ | 'inlist'
148
+ | 'inputMode'
149
+ | 'integrity'
150
+ | 'is'
151
+ | 'itemID'
152
+ | 'itemProp'
153
+ | 'itemRef'
154
+ | 'itemScope'
155
+ | 'itemType'
156
+ | 'key'
157
+ | 'keyParams'
158
+ | 'keyType'
159
+ | 'kind'
160
+ | 'label'
161
+ | 'lang'
162
+ | 'list'
163
+ | 'loop'
164
+ | 'low'
165
+ | 'manifest'
166
+ | 'marginHeight'
167
+ | 'marginWidth'
168
+ | 'max'
169
+ | 'maxLength'
170
+ | 'media'
171
+ | 'mediaGroup'
172
+ | 'method'
173
+ | 'min'
174
+ | 'minLength'
175
+ | 'multiple'
176
+ | 'muted'
177
+ | 'name'
178
+ | 'noValidate'
179
+ | 'nonce'
180
+ | 'onAbort'
181
+ | 'onAbortCapture'
182
+ | 'onAnimationEnd'
183
+ | 'onAnimationEndCapture'
184
+ | 'onAnimationIteration'
185
+ | 'onAnimationIterationCapture'
186
+ | 'onAnimationStart'
187
+ | 'onAnimationStartCapture'
188
+ | 'onAuxClick'
189
+ | 'onAuxClickCapture'
190
+ | 'onBeforeInput'
191
+ | 'onBeforeInputCapture'
192
+ | 'onBlur'
193
+ | 'onBlurCapture'
194
+ | 'onCanPlay'
195
+ | 'onCanPlayCapture'
196
+ | 'onCanPlayThrough'
197
+ | 'onCanPlayThroughCapture'
198
+ | 'onChange'
199
+ | 'onChangeCapture'
200
+ | 'onClick'
201
+ | 'onClickCapture'
202
+ | 'onCompositionEnd'
203
+ | 'onCompositionEndCapture'
204
+ | 'onCompositionStart'
205
+ | 'onCompositionStartCapture'
206
+ | 'onCompositionUpdate'
207
+ | 'onCompositionUpdateCapture'
208
+ | 'onContextMenu'
209
+ | 'onContextMenuCapture'
210
+ | 'onCopy'
211
+ | 'onCopyCapture'
212
+ | 'onCut'
213
+ | 'onCutCapture'
214
+ | 'onDoubleClick'
215
+ | 'onDoubleClickCapture'
216
+ | 'onDrag'
217
+ | 'onDragCapture'
218
+ | 'onDragEnd'
219
+ | 'onDragEndCapture'
220
+ | 'onDragEnter'
221
+ | 'onDragEnterCapture'
222
+ | 'onDragExit'
223
+ | 'onDragExitCapture'
224
+ | 'onDragLeave'
225
+ | 'onDragLeaveCapture'
226
+ | 'onDragOver'
227
+ | 'onDragOverCapture'
228
+ | 'onDragStart'
229
+ | 'onDragStartCapture'
230
+ | 'onDrop'
231
+ | 'onDropCapture'
232
+ | 'onDurationChange'
233
+ | 'onDurationChangeCapture'
234
+ | 'onEmptied'
235
+ | 'onEmptiedCapture'
236
+ | 'onEncrypted'
237
+ | 'onEncryptedCapture'
238
+ | 'onEnded'
239
+ | 'onEndedCapture'
240
+ | 'onError'
241
+ | 'onErrorCapture'
242
+ | 'onFocus'
243
+ | 'onFocusCapture'
244
+ | 'onGotPointerCapture'
245
+ | 'onGotPointerCaptureCapture'
246
+ | 'onInput'
247
+ | 'onInputCapture'
248
+ | 'onInvalid'
249
+ | 'onInvalidCapture'
250
+ | 'onKeyDown'
251
+ | 'onKeyDownCapture'
252
+ | 'onKeyPress'
253
+ | 'onKeyPressCapture'
254
+ | 'onKeyUp'
255
+ | 'onKeyUpCapture'
256
+ | 'onLoad'
257
+ | 'onLoadCapture'
258
+ | 'onLoadStart'
259
+ | 'onLoadStartCapture'
260
+ | 'onLoadedData'
261
+ | 'onLoadedDataCapture'
262
+ | 'onLoadedMetadata'
263
+ | 'onLoadedMetadataCapture'
264
+ | 'onLostPointerCapture'
265
+ | 'onLostPointerCaptureCapture'
266
+ | 'onMouseDown'
267
+ | 'onMouseDownCapture'
268
+ | 'onMouseEnter'
269
+ | 'onMouseLeave'
270
+ | 'onMouseMove'
271
+ | 'onMouseMoveCapture'
272
+ | 'onMouseOut'
273
+ | 'onMouseOutCapture'
274
+ | 'onMouseOver'
275
+ | 'onMouseOverCapture'
276
+ | 'onMouseUp'
277
+ | 'onMouseUpCapture'
278
+ | 'onPaste'
279
+ | 'onPasteCapture'
280
+ | 'onPause'
281
+ | 'onPauseCapture'
282
+ | 'onPlay'
283
+ | 'onPlayCapture'
284
+ | 'onPlaying'
285
+ | 'onPlayingCapture'
286
+ | 'onPointerCancel'
287
+ | 'onPointerCancelCapture'
288
+ | 'onPointerDown'
289
+ | 'onPointerDownCapture'
290
+ | 'onPointerEnter'
291
+ | 'onPointerEnterCapture'
292
+ | 'onPointerLeave'
293
+ | 'onPointerLeaveCapture'
294
+ | 'onPointerMove'
295
+ | 'onPointerMoveCapture'
296
+ | 'onPointerOut'
297
+ | 'onPointerOutCapture'
298
+ | 'onPointerOver'
299
+ | 'onPointerOverCapture'
300
+ | 'onPointerUp'
301
+ | 'onPointerUpCapture'
302
+ | 'onProgress'
303
+ | 'onProgressCapture'
304
+ | 'onRateChange'
305
+ | 'onRateChangeCapture'
306
+ | 'onReset'
307
+ | 'onResetCapture'
308
+ | 'onScroll'
309
+ | 'onScrollCapture'
310
+ | 'onSeeked'
311
+ | 'onSeekedCapture'
312
+ | 'onSeeking'
313
+ | 'onSeekingCapture'
314
+ | 'onSelect'
315
+ | 'onSelectCapture'
316
+ | 'onStalled'
317
+ | 'onStalledCapture'
318
+ | 'onSubmit'
319
+ | 'onSubmitCapture'
320
+ | 'onSuspend'
321
+ | 'onSuspendCapture'
322
+ | 'onTimeUpdate'
323
+ | 'onTimeUpdateCapture'
324
+ | 'onTouchCancel'
325
+ | 'onTouchCancelCapture'
326
+ | 'onTouchEnd'
327
+ | 'onTouchEndCapture'
328
+ | 'onTouchMove'
329
+ | 'onTouchMoveCapture'
330
+ | 'onTouchStart'
331
+ | 'onTouchStartCapture'
332
+ | 'onTransitionEnd'
333
+ | 'onTransitionEndCapture'
334
+ | 'onVolumeChange'
335
+ | 'onVolumeChangeCapture'
336
+ | 'onWaiting'
337
+ | 'onWaitingCapture'
338
+ | 'onWheel'
339
+ | 'onWheelCapture'
340
+ | 'open'
341
+ | 'optimum'
342
+ | 'pattern'
343
+ | 'placeholder'
344
+ | 'playsInline'
345
+ | 'poster'
346
+ | 'prefix'
347
+ | 'preload'
348
+ | 'property'
349
+ | 'radioGroup'
350
+ | 'readOnly'
351
+ | 'rel'
352
+ | 'required'
353
+ | 'resource'
354
+ | 'results'
355
+ | 'reversed'
356
+ | 'role'
357
+ | 'rowSpan'
358
+ | 'rows'
359
+ | 'sandbox'
360
+ | 'scope'
361
+ | 'scoped'
362
+ | 'scrolling'
363
+ | 'seamless'
364
+ | 'security'
365
+ | 'selected'
366
+ | 'shape'
367
+ | 'size'
368
+ | 'sizes'
369
+ | 'slot'
370
+ | 'span'
371
+ | 'spellCheck'
372
+ | 'src'
373
+ | 'srcDoc'
374
+ | 'srcLang'
375
+ | 'srcSet'
376
+ | 'start'
377
+ | 'step'
378
+ | 'style'
379
+ | 'summary'
380
+ | 'suppressContentEditableWarning'
381
+ | 'suppressHydrationWarning'
382
+ | 'tabIndex'
383
+ | 'target'
384
+ | 'testId'
385
+ | 'title'
386
+ | 'translate'
387
+ | 'type'
388
+ | 'typeof'
389
+ | 'unselectable'
390
+ | 'useMap'
391
+ | 'value'
392
+ | 'vocab'
393
+ | 'width'
394
+ | 'wmode'
395
+ | 'wrap'
396
+ > &
397
+ React_2.RefAttributes<HTMLElement>
398
+ >
398
399
  >;
399
400
 
400
401
  // @public
@@ -402,26 +403,26 @@ export const CodeBlock: NamedExoticComponent<CodeBlockProps>;
402
403
 
403
404
  // @public (undocumented)
404
405
  export interface CodeBlockProps {
405
- codeBidiWarningLabel?: string;
406
- codeBidiWarnings?: boolean;
407
- codeBidiWarningTooltipEnabled?: boolean;
408
- highlight?: string;
409
- highlightedEndText?: string;
410
- highlightedStartText?: string;
411
- language?: SupportedLanguages;
412
- shouldWrapLongLines?: boolean;
413
- showLineNumbers?: boolean;
414
- testId?: string;
415
- text: string;
406
+ codeBidiWarningLabel?: string;
407
+ codeBidiWarnings?: boolean;
408
+ codeBidiWarningTooltipEnabled?: boolean;
409
+ highlight?: string;
410
+ highlightedEndText?: string;
411
+ highlightedStartText?: string;
412
+ language?: SupportedLanguages;
413
+ shouldWrapLongLines?: boolean;
414
+ showLineNumbers?: boolean;
415
+ testId?: string;
416
+ text: string;
416
417
  }
417
418
 
418
419
  // @public (undocumented)
419
420
  export interface CodeProps extends HTMLProps<HTMLElement> {
420
- children?: ReactNode;
421
- codeBidiWarningLabel?: string;
422
- codeBidiWarnings?: boolean;
423
- codeBidiWarningTooltipEnabled?: boolean;
424
- testId?: string;
421
+ children?: ReactNode;
422
+ codeBidiWarningLabel?: string;
423
+ codeBidiWarnings?: boolean;
424
+ codeBidiWarningTooltipEnabled?: boolean;
425
+ testId?: string;
425
426
  }
426
427
 
427
428
  // @public (undocumented)
@@ -431,431 +432,430 @@ export const getCodeStyles: () => CSSObject;
431
432
  export type Language = (typeof SUPPORTED_LANGUAGES)[number];
432
433
 
433
434
  // @public (undocumented)
434
- export type LanguageAlias =
435
- (typeof SUPPORTED_LANGUAGES)[number]['alias'][number];
435
+ export type LanguageAlias = (typeof SUPPORTED_LANGUAGES)[number]['alias'][number];
436
436
 
437
437
  // @public (undocumented)
438
438
  type LanguageName = (typeof SUPPORTED_LANGUAGES)[number]['name'];
439
439
 
440
440
  // @public (undocumented)
441
441
  export const SUPPORTED_LANGUAGES: readonly [
442
- {
443
- readonly name: 'PHP';
444
- readonly alias: readonly ['php', 'php3', 'php4', 'php5'];
445
- readonly value: 'php';
446
- },
447
- {
448
- readonly name: 'Java';
449
- readonly alias: readonly ['java'];
450
- readonly value: 'java';
451
- },
452
- {
453
- readonly name: 'CSharp';
454
- readonly alias: readonly ['csharp', 'c#'];
455
- readonly value: 'cs';
456
- },
457
- {
458
- readonly name: 'Python';
459
- readonly alias: readonly ['python', 'py'];
460
- readonly value: 'python';
461
- },
462
- {
463
- readonly name: 'JavaScript';
464
- readonly alias: readonly ['javascript', 'js'];
465
- readonly value: 'javascript';
466
- },
467
- {
468
- readonly name: 'Html';
469
- readonly alias: readonly ['html'];
470
- readonly value: 'xml';
471
- },
472
- {
473
- readonly name: 'C++';
474
- readonly alias: readonly ['c++', 'cpp', 'clike'];
475
- readonly value: 'cpp';
476
- },
477
- {
478
- readonly name: 'Ruby';
479
- readonly alias: readonly ['ruby', 'rb', 'duby'];
480
- readonly value: 'ruby';
481
- },
482
- {
483
- readonly name: 'Objective-C';
484
- readonly alias: readonly ['objective-c', 'objectivec', 'obj-c', 'objc'];
485
- readonly value: 'objectivec';
486
- },
487
- {
488
- readonly name: 'C';
489
- readonly alias: readonly ['c'];
490
- readonly value: 'cpp';
491
- },
492
- {
493
- readonly name: 'Swift';
494
- readonly alias: readonly ['swift'];
495
- readonly value: 'swift';
496
- },
497
- {
498
- readonly name: 'TeX';
499
- readonly alias: readonly ['tex', 'latex'];
500
- readonly value: 'tex';
501
- },
502
- {
503
- readonly name: 'Shell';
504
- readonly alias: readonly ['shell', 'bash', 'sh', 'ksh', 'zsh'];
505
- readonly value: 'shell';
506
- },
507
- {
508
- readonly name: 'Scala';
509
- readonly alias: readonly ['scala'];
510
- readonly value: 'scala';
511
- },
512
- {
513
- readonly name: 'Go';
514
- readonly alias: readonly ['go'];
515
- readonly value: 'go';
516
- },
517
- {
518
- readonly name: 'ActionScript';
519
- readonly alias: readonly ['actionscript', 'actionscript3', 'as'];
520
- readonly value: 'actionscript';
521
- },
522
- {
523
- readonly name: 'ColdFusion';
524
- readonly alias: readonly ['coldfusion'];
525
- readonly value: 'xml';
526
- },
527
- {
528
- readonly name: 'JavaFX';
529
- readonly alias: readonly ['javafx', 'jfx'];
530
- readonly value: 'java';
531
- },
532
- {
533
- readonly name: 'VbNet';
534
- readonly alias: readonly ['vbnet', 'vb.net', 'vfp', 'clipper', 'xbase'];
535
- readonly value: 'vbnet';
536
- },
537
- {
538
- readonly name: 'JSON';
539
- readonly alias: readonly ['json'];
540
- readonly value: 'json';
541
- },
542
- {
543
- readonly name: 'MATLAB';
544
- readonly alias: readonly ['matlab'];
545
- readonly value: 'matlab';
546
- },
547
- {
548
- readonly name: 'Groovy';
549
- readonly alias: readonly ['groovy'];
550
- readonly value: 'groovy';
551
- },
552
- {
553
- readonly name: 'SQL';
554
- readonly alias: readonly [
555
- 'sql',
556
- 'postgresql',
557
- 'postgres',
558
- 'plpgsql',
559
- 'psql',
560
- 'postgresql-console',
561
- 'postgres-console',
562
- 'tsql',
563
- 't-sql',
564
- 'mysql',
565
- 'sqlite',
566
- ];
567
- readonly value: 'sql';
568
- },
569
- {
570
- readonly name: 'R';
571
- readonly alias: readonly ['r'];
572
- readonly value: 'r';
573
- },
574
- {
575
- readonly name: 'Perl';
576
- readonly alias: readonly ['perl', 'pl'];
577
- readonly value: 'perl';
578
- },
579
- {
580
- readonly name: 'Lua';
581
- readonly alias: readonly ['lua'];
582
- readonly value: 'lua';
583
- },
584
- {
585
- readonly name: 'Pascal';
586
- readonly alias: readonly ['pas', 'pascal', 'objectpascal', 'delphi'];
587
- readonly value: 'pascal';
588
- },
589
- {
590
- readonly name: 'XML';
591
- readonly alias: readonly ['xml'];
592
- readonly value: 'xml';
593
- },
594
- {
595
- readonly name: 'TypeScript';
596
- readonly alias: readonly ['typescript', 'ts'];
597
- readonly value: 'typescript';
598
- },
599
- {
600
- readonly name: 'CoffeeScript';
601
- readonly alias: readonly ['coffeescript', 'coffee-script', 'coffee'];
602
- readonly value: 'coffeescript';
603
- },
604
- {
605
- readonly name: 'Haskell';
606
- readonly alias: readonly ['haskell', 'hs'];
607
- readonly value: 'haskell';
608
- },
609
- {
610
- readonly name: 'Puppet';
611
- readonly alias: readonly ['puppet'];
612
- readonly value: 'puppet';
613
- },
614
- {
615
- readonly name: 'Arduino';
616
- readonly alias: readonly ['arduino'];
617
- readonly value: 'arduino';
618
- },
619
- {
620
- readonly name: 'Fortran';
621
- readonly alias: readonly ['fortran'];
622
- readonly value: 'fortran';
623
- },
624
- {
625
- readonly name: 'Erlang';
626
- readonly alias: readonly ['erlang', 'erl'];
627
- readonly value: 'erlang';
628
- },
629
- {
630
- readonly name: 'PowerShell';
631
- readonly alias: readonly ['powershell', 'posh', 'ps1', 'psm1'];
632
- readonly value: 'powershell';
633
- },
634
- {
635
- readonly name: 'Haxe';
636
- readonly alias: readonly ['haxe', 'hx', 'hxsl'];
637
- readonly value: 'haxe';
638
- },
639
- {
640
- readonly name: 'Elixir';
641
- readonly alias: readonly ['elixir', 'ex', 'exs'];
642
- readonly value: 'elixir';
643
- },
644
- {
645
- readonly name: 'Verilog';
646
- readonly alias: readonly ['verilog', 'v'];
647
- readonly value: 'verilog';
648
- },
649
- {
650
- readonly name: 'Rust';
651
- readonly alias: readonly ['rust'];
652
- readonly value: 'rust';
653
- },
654
- {
655
- readonly name: 'VHDL';
656
- readonly alias: readonly ['vhdl'];
657
- readonly value: 'vhdl';
658
- },
659
- {
660
- readonly name: 'Sass';
661
- readonly alias: readonly ['sass'];
662
- readonly value: 'less';
663
- },
664
- {
665
- readonly name: 'OCaml';
666
- readonly alias: readonly ['ocaml'];
667
- readonly value: 'ocaml';
668
- },
669
- {
670
- readonly name: 'Dart';
671
- readonly alias: readonly ['dart'];
672
- readonly value: 'dart';
673
- },
674
- {
675
- readonly name: 'CSS';
676
- readonly alias: readonly ['css'];
677
- readonly value: 'css';
678
- },
679
- {
680
- readonly name: 'reStructuredText';
681
- readonly alias: readonly ['restructuredtext', 'rst', 'rest'];
682
- readonly value: 'rest';
683
- },
684
- {
685
- readonly name: 'Kotlin';
686
- readonly alias: readonly ['kotlin'];
687
- readonly value: 'kotlin';
688
- },
689
- {
690
- readonly name: 'D';
691
- readonly alias: readonly ['d'];
692
- readonly value: 'd';
693
- },
694
- {
695
- readonly name: 'Octave';
696
- readonly alias: readonly ['octave'];
697
- readonly value: 'matlab';
698
- },
699
- {
700
- readonly name: 'QML';
701
- readonly alias: readonly ['qbs', 'qml'];
702
- readonly value: 'qml';
703
- },
704
- {
705
- readonly name: 'Prolog';
706
- readonly alias: readonly ['prolog'];
707
- readonly value: 'prolog';
708
- },
709
- {
710
- readonly name: 'FoxPro';
711
- readonly alias: readonly ['foxpro', 'purebasic'];
712
- readonly value: 'purebasic';
713
- },
714
- {
715
- readonly name: 'Scheme';
716
- readonly alias: readonly ['scheme', 'scm'];
717
- readonly value: 'scheme';
718
- },
719
- {
720
- readonly name: 'CUDA';
721
- readonly alias: readonly ['cuda', 'cu'];
722
- readonly value: 'cpp';
723
- },
724
- {
725
- readonly name: 'Julia';
726
- readonly alias: readonly ['julia', 'jl'];
727
- readonly value: 'julia';
728
- },
729
- {
730
- readonly name: 'Racket';
731
- readonly alias: readonly ['racket', 'rkt'];
732
- readonly value: 'lisp';
733
- },
734
- {
735
- readonly name: 'Ada';
736
- readonly alias: readonly ['ada', 'ada95', 'ada2005'];
737
- readonly value: 'ada';
738
- },
739
- {
740
- readonly name: 'Tcl';
741
- readonly alias: readonly ['tcl'];
742
- readonly value: 'tcl';
743
- },
744
- {
745
- readonly name: 'Mathematica';
746
- readonly alias: readonly ['mathematica', 'mma', 'nb'];
747
- readonly value: 'mathematica';
748
- },
749
- {
750
- readonly name: 'Autoit';
751
- readonly alias: readonly ['autoit'];
752
- readonly value: 'autoit';
753
- },
754
- {
755
- readonly name: 'StandardML';
756
- readonly alias: readonly ['standardmL', 'sml', 'standardml'];
757
- readonly value: 'sml';
758
- },
759
- {
760
- readonly name: 'Objective-J';
761
- readonly alias: readonly ['objective-j', 'objectivej', 'obj-j', 'objj'];
762
- readonly value: 'objectivec';
763
- },
764
- {
765
- readonly name: 'Smalltalk';
766
- readonly alias: readonly ['smalltalk', 'squeak', 'st'];
767
- readonly value: 'smalltalk';
768
- },
769
- {
770
- readonly name: 'Vala';
771
- readonly alias: readonly ['vala', 'vapi'];
772
- readonly value: 'vala';
773
- },
774
- {
775
- readonly name: 'ABAP';
776
- readonly alias: readonly ['abap'];
777
- readonly value: 'sql';
778
- },
779
- {
780
- readonly name: 'LiveScript';
781
- readonly alias: readonly ['livescript', 'live-script'];
782
- readonly value: 'livescript';
783
- },
784
- {
785
- readonly name: 'XQuery';
786
- readonly alias: readonly ['xquery', 'xqy', 'xq', 'xql', 'xqm'];
787
- readonly value: 'xquery';
788
- },
789
- {
790
- readonly name: 'PlainText';
791
- readonly alias: readonly ['text', 'plaintext'];
792
- readonly value: 'text';
793
- },
794
- {
795
- readonly name: 'Yaml';
796
- readonly alias: readonly ['yaml', 'yml'];
797
- readonly value: 'yaml';
798
- },
799
- {
800
- readonly name: 'GraphQL';
801
- readonly alias: readonly ['graphql'];
802
- readonly value: 'graphql';
803
- },
804
- {
805
- readonly name: 'AppleScript';
806
- readonly alias: readonly ['applescript'];
807
- readonly value: 'applescript';
808
- },
809
- {
810
- readonly name: 'Clojure';
811
- readonly alias: readonly ['clojure'];
812
- readonly value: 'clojure';
813
- },
814
- {
815
- readonly name: 'Diff';
816
- readonly alias: readonly ['diff'];
817
- readonly value: 'diff';
818
- },
819
- {
820
- readonly name: 'VisualBasic';
821
- readonly alias: readonly ['visualbasic'];
822
- readonly value: 'visual-basic';
823
- },
824
- {
825
- readonly name: 'JSX';
826
- readonly alias: readonly ['jsx'];
827
- readonly value: 'jsx';
828
- },
829
- {
830
- readonly name: 'TSX';
831
- readonly alias: readonly ['tsx'];
832
- readonly value: 'tsx';
833
- },
834
- {
835
- readonly name: 'SplunkSPL';
836
- readonly alias: readonly ['splunk-spl'];
837
- readonly value: 'splunk-spl';
838
- },
839
- {
840
- readonly name: 'Dockerfile';
841
- readonly alias: readonly ['docker', 'dockerfile'];
842
- readonly value: 'dockerfile';
843
- },
844
- {
845
- readonly name: 'HCL';
846
- readonly alias: readonly ['hcl', 'terraform'];
847
- readonly value: 'hcl';
848
- },
849
- {
850
- readonly name: 'NGINX';
851
- readonly alias: readonly ['nginx'];
852
- readonly value: 'nginx';
853
- },
854
- {
855
- readonly name: 'Protocol Buffers';
856
- readonly alias: readonly ['protobuf', 'proto'];
857
- readonly value: 'protobuf';
858
- },
442
+ {
443
+ readonly name: 'PHP';
444
+ readonly alias: readonly ['php', 'php3', 'php4', 'php5'];
445
+ readonly value: 'php';
446
+ },
447
+ {
448
+ readonly name: 'Java';
449
+ readonly alias: readonly ['java'];
450
+ readonly value: 'java';
451
+ },
452
+ {
453
+ readonly name: 'CSharp';
454
+ readonly alias: readonly ['csharp', 'c#'];
455
+ readonly value: 'cs';
456
+ },
457
+ {
458
+ readonly name: 'Python';
459
+ readonly alias: readonly ['python', 'py'];
460
+ readonly value: 'python';
461
+ },
462
+ {
463
+ readonly name: 'JavaScript';
464
+ readonly alias: readonly ['javascript', 'js'];
465
+ readonly value: 'javascript';
466
+ },
467
+ {
468
+ readonly name: 'Html';
469
+ readonly alias: readonly ['html'];
470
+ readonly value: 'xml';
471
+ },
472
+ {
473
+ readonly name: 'C++';
474
+ readonly alias: readonly ['c++', 'cpp', 'clike'];
475
+ readonly value: 'cpp';
476
+ },
477
+ {
478
+ readonly name: 'Ruby';
479
+ readonly alias: readonly ['ruby', 'rb', 'duby'];
480
+ readonly value: 'ruby';
481
+ },
482
+ {
483
+ readonly name: 'Objective-C';
484
+ readonly alias: readonly ['objective-c', 'objectivec', 'obj-c', 'objc'];
485
+ readonly value: 'objectivec';
486
+ },
487
+ {
488
+ readonly name: 'C';
489
+ readonly alias: readonly ['c'];
490
+ readonly value: 'cpp';
491
+ },
492
+ {
493
+ readonly name: 'Swift';
494
+ readonly alias: readonly ['swift'];
495
+ readonly value: 'swift';
496
+ },
497
+ {
498
+ readonly name: 'TeX';
499
+ readonly alias: readonly ['tex', 'latex'];
500
+ readonly value: 'tex';
501
+ },
502
+ {
503
+ readonly name: 'Shell';
504
+ readonly alias: readonly ['shell', 'bash', 'sh', 'ksh', 'zsh'];
505
+ readonly value: 'shell';
506
+ },
507
+ {
508
+ readonly name: 'Scala';
509
+ readonly alias: readonly ['scala'];
510
+ readonly value: 'scala';
511
+ },
512
+ {
513
+ readonly name: 'Go';
514
+ readonly alias: readonly ['go'];
515
+ readonly value: 'go';
516
+ },
517
+ {
518
+ readonly name: 'ActionScript';
519
+ readonly alias: readonly ['actionscript', 'actionscript3', 'as'];
520
+ readonly value: 'actionscript';
521
+ },
522
+ {
523
+ readonly name: 'ColdFusion';
524
+ readonly alias: readonly ['coldfusion'];
525
+ readonly value: 'xml';
526
+ },
527
+ {
528
+ readonly name: 'JavaFX';
529
+ readonly alias: readonly ['javafx', 'jfx'];
530
+ readonly value: 'java';
531
+ },
532
+ {
533
+ readonly name: 'VbNet';
534
+ readonly alias: readonly ['vbnet', 'vb.net', 'vfp', 'clipper', 'xbase'];
535
+ readonly value: 'vbnet';
536
+ },
537
+ {
538
+ readonly name: 'JSON';
539
+ readonly alias: readonly ['json'];
540
+ readonly value: 'json';
541
+ },
542
+ {
543
+ readonly name: 'MATLAB';
544
+ readonly alias: readonly ['matlab'];
545
+ readonly value: 'matlab';
546
+ },
547
+ {
548
+ readonly name: 'Groovy';
549
+ readonly alias: readonly ['groovy'];
550
+ readonly value: 'groovy';
551
+ },
552
+ {
553
+ readonly name: 'SQL';
554
+ readonly alias: readonly [
555
+ 'sql',
556
+ 'postgresql',
557
+ 'postgres',
558
+ 'plpgsql',
559
+ 'psql',
560
+ 'postgresql-console',
561
+ 'postgres-console',
562
+ 'tsql',
563
+ 't-sql',
564
+ 'mysql',
565
+ 'sqlite',
566
+ ];
567
+ readonly value: 'sql';
568
+ },
569
+ {
570
+ readonly name: 'R';
571
+ readonly alias: readonly ['r'];
572
+ readonly value: 'r';
573
+ },
574
+ {
575
+ readonly name: 'Perl';
576
+ readonly alias: readonly ['perl', 'pl'];
577
+ readonly value: 'perl';
578
+ },
579
+ {
580
+ readonly name: 'Lua';
581
+ readonly alias: readonly ['lua'];
582
+ readonly value: 'lua';
583
+ },
584
+ {
585
+ readonly name: 'Pascal';
586
+ readonly alias: readonly ['pas', 'pascal', 'objectpascal', 'delphi'];
587
+ readonly value: 'pascal';
588
+ },
589
+ {
590
+ readonly name: 'XML';
591
+ readonly alias: readonly ['xml'];
592
+ readonly value: 'xml';
593
+ },
594
+ {
595
+ readonly name: 'TypeScript';
596
+ readonly alias: readonly ['typescript', 'ts'];
597
+ readonly value: 'typescript';
598
+ },
599
+ {
600
+ readonly name: 'CoffeeScript';
601
+ readonly alias: readonly ['coffeescript', 'coffee-script', 'coffee'];
602
+ readonly value: 'coffeescript';
603
+ },
604
+ {
605
+ readonly name: 'Haskell';
606
+ readonly alias: readonly ['haskell', 'hs'];
607
+ readonly value: 'haskell';
608
+ },
609
+ {
610
+ readonly name: 'Puppet';
611
+ readonly alias: readonly ['puppet'];
612
+ readonly value: 'puppet';
613
+ },
614
+ {
615
+ readonly name: 'Arduino';
616
+ readonly alias: readonly ['arduino'];
617
+ readonly value: 'arduino';
618
+ },
619
+ {
620
+ readonly name: 'Fortran';
621
+ readonly alias: readonly ['fortran'];
622
+ readonly value: 'fortran';
623
+ },
624
+ {
625
+ readonly name: 'Erlang';
626
+ readonly alias: readonly ['erlang', 'erl'];
627
+ readonly value: 'erlang';
628
+ },
629
+ {
630
+ readonly name: 'PowerShell';
631
+ readonly alias: readonly ['powershell', 'posh', 'ps1', 'psm1'];
632
+ readonly value: 'powershell';
633
+ },
634
+ {
635
+ readonly name: 'Haxe';
636
+ readonly alias: readonly ['haxe', 'hx', 'hxsl'];
637
+ readonly value: 'haxe';
638
+ },
639
+ {
640
+ readonly name: 'Elixir';
641
+ readonly alias: readonly ['elixir', 'ex', 'exs'];
642
+ readonly value: 'elixir';
643
+ },
644
+ {
645
+ readonly name: 'Verilog';
646
+ readonly alias: readonly ['verilog', 'v'];
647
+ readonly value: 'verilog';
648
+ },
649
+ {
650
+ readonly name: 'Rust';
651
+ readonly alias: readonly ['rust'];
652
+ readonly value: 'rust';
653
+ },
654
+ {
655
+ readonly name: 'VHDL';
656
+ readonly alias: readonly ['vhdl'];
657
+ readonly value: 'vhdl';
658
+ },
659
+ {
660
+ readonly name: 'Sass';
661
+ readonly alias: readonly ['sass'];
662
+ readonly value: 'less';
663
+ },
664
+ {
665
+ readonly name: 'OCaml';
666
+ readonly alias: readonly ['ocaml'];
667
+ readonly value: 'ocaml';
668
+ },
669
+ {
670
+ readonly name: 'Dart';
671
+ readonly alias: readonly ['dart'];
672
+ readonly value: 'dart';
673
+ },
674
+ {
675
+ readonly name: 'CSS';
676
+ readonly alias: readonly ['css'];
677
+ readonly value: 'css';
678
+ },
679
+ {
680
+ readonly name: 'reStructuredText';
681
+ readonly alias: readonly ['restructuredtext', 'rst', 'rest'];
682
+ readonly value: 'rest';
683
+ },
684
+ {
685
+ readonly name: 'Kotlin';
686
+ readonly alias: readonly ['kotlin'];
687
+ readonly value: 'kotlin';
688
+ },
689
+ {
690
+ readonly name: 'D';
691
+ readonly alias: readonly ['d'];
692
+ readonly value: 'd';
693
+ },
694
+ {
695
+ readonly name: 'Octave';
696
+ readonly alias: readonly ['octave'];
697
+ readonly value: 'matlab';
698
+ },
699
+ {
700
+ readonly name: 'QML';
701
+ readonly alias: readonly ['qbs', 'qml'];
702
+ readonly value: 'qml';
703
+ },
704
+ {
705
+ readonly name: 'Prolog';
706
+ readonly alias: readonly ['prolog'];
707
+ readonly value: 'prolog';
708
+ },
709
+ {
710
+ readonly name: 'FoxPro';
711
+ readonly alias: readonly ['foxpro', 'purebasic'];
712
+ readonly value: 'purebasic';
713
+ },
714
+ {
715
+ readonly name: 'Scheme';
716
+ readonly alias: readonly ['scheme', 'scm'];
717
+ readonly value: 'scheme';
718
+ },
719
+ {
720
+ readonly name: 'CUDA';
721
+ readonly alias: readonly ['cuda', 'cu'];
722
+ readonly value: 'cpp';
723
+ },
724
+ {
725
+ readonly name: 'Julia';
726
+ readonly alias: readonly ['julia', 'jl'];
727
+ readonly value: 'julia';
728
+ },
729
+ {
730
+ readonly name: 'Racket';
731
+ readonly alias: readonly ['racket', 'rkt'];
732
+ readonly value: 'lisp';
733
+ },
734
+ {
735
+ readonly name: 'Ada';
736
+ readonly alias: readonly ['ada', 'ada95', 'ada2005'];
737
+ readonly value: 'ada';
738
+ },
739
+ {
740
+ readonly name: 'Tcl';
741
+ readonly alias: readonly ['tcl'];
742
+ readonly value: 'tcl';
743
+ },
744
+ {
745
+ readonly name: 'Mathematica';
746
+ readonly alias: readonly ['mathematica', 'mma', 'nb'];
747
+ readonly value: 'mathematica';
748
+ },
749
+ {
750
+ readonly name: 'Autoit';
751
+ readonly alias: readonly ['autoit'];
752
+ readonly value: 'autoit';
753
+ },
754
+ {
755
+ readonly name: 'StandardML';
756
+ readonly alias: readonly ['standardmL', 'sml', 'standardml'];
757
+ readonly value: 'sml';
758
+ },
759
+ {
760
+ readonly name: 'Objective-J';
761
+ readonly alias: readonly ['objective-j', 'objectivej', 'obj-j', 'objj'];
762
+ readonly value: 'objectivec';
763
+ },
764
+ {
765
+ readonly name: 'Smalltalk';
766
+ readonly alias: readonly ['smalltalk', 'squeak', 'st'];
767
+ readonly value: 'smalltalk';
768
+ },
769
+ {
770
+ readonly name: 'Vala';
771
+ readonly alias: readonly ['vala', 'vapi'];
772
+ readonly value: 'vala';
773
+ },
774
+ {
775
+ readonly name: 'ABAP';
776
+ readonly alias: readonly ['abap'];
777
+ readonly value: 'sql';
778
+ },
779
+ {
780
+ readonly name: 'LiveScript';
781
+ readonly alias: readonly ['livescript', 'live-script'];
782
+ readonly value: 'livescript';
783
+ },
784
+ {
785
+ readonly name: 'XQuery';
786
+ readonly alias: readonly ['xquery', 'xqy', 'xq', 'xql', 'xqm'];
787
+ readonly value: 'xquery';
788
+ },
789
+ {
790
+ readonly name: 'PlainText';
791
+ readonly alias: readonly ['text', 'plaintext'];
792
+ readonly value: 'text';
793
+ },
794
+ {
795
+ readonly name: 'Yaml';
796
+ readonly alias: readonly ['yaml', 'yml'];
797
+ readonly value: 'yaml';
798
+ },
799
+ {
800
+ readonly name: 'GraphQL';
801
+ readonly alias: readonly ['graphql'];
802
+ readonly value: 'graphql';
803
+ },
804
+ {
805
+ readonly name: 'AppleScript';
806
+ readonly alias: readonly ['applescript'];
807
+ readonly value: 'applescript';
808
+ },
809
+ {
810
+ readonly name: 'Clojure';
811
+ readonly alias: readonly ['clojure'];
812
+ readonly value: 'clojure';
813
+ },
814
+ {
815
+ readonly name: 'Diff';
816
+ readonly alias: readonly ['diff'];
817
+ readonly value: 'diff';
818
+ },
819
+ {
820
+ readonly name: 'VisualBasic';
821
+ readonly alias: readonly ['visualbasic'];
822
+ readonly value: 'visual-basic';
823
+ },
824
+ {
825
+ readonly name: 'JSX';
826
+ readonly alias: readonly ['jsx'];
827
+ readonly value: 'jsx';
828
+ },
829
+ {
830
+ readonly name: 'TSX';
831
+ readonly alias: readonly ['tsx'];
832
+ readonly value: 'tsx';
833
+ },
834
+ {
835
+ readonly name: 'SplunkSPL';
836
+ readonly alias: readonly ['splunk-spl'];
837
+ readonly value: 'splunk-spl';
838
+ },
839
+ {
840
+ readonly name: 'Dockerfile';
841
+ readonly alias: readonly ['docker', 'dockerfile'];
842
+ readonly value: 'dockerfile';
843
+ },
844
+ {
845
+ readonly name: 'HCL';
846
+ readonly alias: readonly ['hcl', 'terraform'];
847
+ readonly value: 'hcl';
848
+ },
849
+ {
850
+ readonly name: 'NGINX';
851
+ readonly alias: readonly ['nginx'];
852
+ readonly value: 'nginx';
853
+ },
854
+ {
855
+ readonly name: 'Protocol Buffers';
856
+ readonly alias: readonly ['protobuf', 'proto'];
857
+ readonly value: 'protobuf';
858
+ },
859
859
  ];
860
860
 
861
861
  // @public (undocumented)
@@ -872,7 +872,7 @@ export type SupportedLanguages = LanguageAlias | LanguageName;
872
872
 
873
873
  ```json
874
874
  {
875
- "react": "^16.8.0"
875
+ "react": "^16.8.0"
876
876
  }
877
877
  ```
878
878