@wordpress/element 6.29.1-next.f34ab90e9.0 → 6.30.1-next.6870dfe5b.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/README.md +10 -14
- package/build/create-interpolate-element.js +28 -53
- package/build/create-interpolate-element.js.map +1 -1
- package/build/index.js.map +1 -1
- package/build/platform.js +21 -5
- package/build/platform.js.map +1 -1
- package/build/raw-html.js +4 -2
- package/build/raw-html.js.map +1 -1
- package/build/react-platform.js.map +1 -1
- package/build/react.js +9 -22
- package/build/react.js.map +1 -1
- package/build/serialize.js +39 -90
- package/build/serialize.js.map +1 -1
- package/build/utils.js +2 -2
- package/build/utils.js.map +1 -1
- package/build-module/create-interpolate-element.js +28 -54
- package/build-module/create-interpolate-element.js.map +1 -1
- package/build-module/index.js.map +1 -1
- package/build-module/platform.js +21 -5
- package/build-module/platform.js.map +1 -1
- package/build-module/raw-html.js +4 -2
- package/build-module/raw-html.js.map +1 -1
- package/build-module/react-platform.js.map +1 -1
- package/build-module/react.js +9 -22
- package/build-module/react.js.map +1 -1
- package/build-module/serialize.js +39 -90
- package/build-module/serialize.js.map +1 -1
- package/build-module/utils.js +2 -2
- package/build-module/utils.js.map +1 -1
- package/build-types/create-interpolate-element.d.ts +8 -42
- package/build-types/create-interpolate-element.d.ts.map +1 -1
- package/build-types/index.d.ts +7 -7
- package/build-types/index.d.ts.map +1 -1
- package/build-types/platform.d.ts +48 -5
- package/build-types/platform.d.ts.map +1 -1
- package/build-types/raw-html.d.ts +7 -5
- package/build-types/raw-html.d.ts.map +1 -1
- package/build-types/react-platform.d.ts +62 -9
- package/build-types/react-platform.d.ts.map +1 -1
- package/build-types/react.d.ts +185 -58
- package/build-types/react.d.ts.map +1 -1
- package/build-types/serialize.d.ts +61 -43
- package/build-types/serialize.d.ts.map +1 -1
- package/build-types/utils.d.ts +7 -1
- package/build-types/utils.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/{create-interpolate-element.js → create-interpolate-element.ts} +95 -64
- package/src/{platform.js → platform.ts} +27 -4
- package/src/{raw-html.js → raw-html.ts} +11 -3
- package/src/{react.js → react.ts} +40 -37
- package/src/{serialize.js → serialize.ts} +136 -145
- package/src/{utils.js → utils.ts} +4 -4
- package/tsconfig.tsbuildinfo +1 -1
- /package/src/{index.js → index.ts} +0 -0
- /package/src/{react-platform.js → react-platform.ts} +0 -0
|
@@ -48,24 +48,50 @@ import RawHTML from './raw-html';
|
|
|
48
48
|
|
|
49
49
|
/** @typedef {import('react').ReactElement} ReactElement */
|
|
50
50
|
|
|
51
|
-
const
|
|
51
|
+
const Context = createContext( undefined );
|
|
52
|
+
Context.displayName = 'ElementContext';
|
|
53
|
+
|
|
54
|
+
interface ComponentInstance {
|
|
55
|
+
render: () => React.ReactNode;
|
|
56
|
+
getChildContext?: () => Record< string, any >;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
interface RawHTMLProps {
|
|
60
|
+
children: string;
|
|
61
|
+
[ key: string ]: any;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
interface StyleObject {
|
|
65
|
+
[ property: string ]: string | number | null | undefined;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
interface HTMLProps {
|
|
69
|
+
dangerouslySetInnerHTML?: {
|
|
70
|
+
__html: string;
|
|
71
|
+
};
|
|
72
|
+
children?: React.ReactNode;
|
|
73
|
+
value?: React.ReactNode;
|
|
74
|
+
style?: StyleObject | string;
|
|
75
|
+
className?: string;
|
|
76
|
+
htmlFor?: string;
|
|
77
|
+
[ key: string ]: any;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const { Provider, Consumer } = Context;
|
|
81
|
+
|
|
52
82
|
const ForwardRef = forwardRef( () => {
|
|
53
83
|
return null;
|
|
54
84
|
} );
|
|
55
85
|
|
|
56
86
|
/**
|
|
57
87
|
* Valid attribute types.
|
|
58
|
-
*
|
|
59
|
-
* @type {Set<string>}
|
|
60
88
|
*/
|
|
61
|
-
const ATTRIBUTES_TYPES = new Set( [ 'string', 'boolean', 'number' ] );
|
|
89
|
+
const ATTRIBUTES_TYPES = new Set< string >( [ 'string', 'boolean', 'number' ] );
|
|
62
90
|
|
|
63
91
|
/**
|
|
64
92
|
* Element tags which can be self-closing.
|
|
65
|
-
*
|
|
66
|
-
* @type {Set<string>}
|
|
67
93
|
*/
|
|
68
|
-
const SELF_CLOSING_TAGS = new Set( [
|
|
94
|
+
const SELF_CLOSING_TAGS = new Set< string >( [
|
|
69
95
|
'area',
|
|
70
96
|
'base',
|
|
71
97
|
'br',
|
|
@@ -96,10 +122,8 @@ const SELF_CLOSING_TAGS = new Set( [
|
|
|
96
122
|
* .reduce( ( result, tr ) => Object.assign( result, {
|
|
97
123
|
* [ tr.firstChild.textContent.trim() ]: true
|
|
98
124
|
* } ), {} ) ).sort();
|
|
99
|
-
*
|
|
100
|
-
* @type {Set<string>}
|
|
101
125
|
*/
|
|
102
|
-
const BOOLEAN_ATTRIBUTES = new Set( [
|
|
126
|
+
const BOOLEAN_ATTRIBUTES = new Set< string >( [
|
|
103
127
|
'allowfullscreen',
|
|
104
128
|
'allowpaymentrequest',
|
|
105
129
|
'allowusermedia',
|
|
@@ -147,10 +171,8 @@ const BOOLEAN_ATTRIBUTES = new Set( [
|
|
|
147
171
|
* Some notable omissions:
|
|
148
172
|
*
|
|
149
173
|
* - `alt`: https://blog.whatwg.org/omit-alt
|
|
150
|
-
*
|
|
151
|
-
* @type {Set<string>}
|
|
152
174
|
*/
|
|
153
|
-
const ENUMERATED_ATTRIBUTES = new Set( [
|
|
175
|
+
const ENUMERATED_ATTRIBUTES = new Set< string >( [
|
|
154
176
|
'autocapitalize',
|
|
155
177
|
'autocomplete',
|
|
156
178
|
'charset',
|
|
@@ -190,10 +212,8 @@ const ENUMERATED_ATTRIBUTES = new Set( [
|
|
|
190
212
|
* ) )
|
|
191
213
|
* .map( ( [ key ] ) => key )
|
|
192
214
|
* .sort();
|
|
193
|
-
*
|
|
194
|
-
* @type {Set<string>}
|
|
195
215
|
*/
|
|
196
|
-
const CSS_PROPERTIES_SUPPORTS_UNITLESS = new Set( [
|
|
216
|
+
const CSS_PROPERTIES_SUPPORTS_UNITLESS = new Set< string >( [
|
|
197
217
|
'animation',
|
|
198
218
|
'animationIterationCount',
|
|
199
219
|
'baselineShift',
|
|
@@ -237,37 +257,28 @@ const CSS_PROPERTIES_SUPPORTS_UNITLESS = new Set( [
|
|
|
237
257
|
/**
|
|
238
258
|
* Returns true if the specified string is prefixed by one of an array of
|
|
239
259
|
* possible prefixes.
|
|
240
|
-
*
|
|
241
|
-
* @param
|
|
242
|
-
* @param {string[]} prefixes Possible prefixes.
|
|
243
|
-
*
|
|
244
|
-
* @return {boolean} Whether string has prefix.
|
|
260
|
+
* @param string
|
|
261
|
+
* @param prefixes
|
|
245
262
|
*/
|
|
246
|
-
export function hasPrefix( string, prefixes ) {
|
|
263
|
+
export function hasPrefix( string: string, prefixes: string[] ): boolean {
|
|
247
264
|
return prefixes.some( ( prefix ) => string.indexOf( prefix ) === 0 );
|
|
248
265
|
}
|
|
249
266
|
|
|
250
267
|
/**
|
|
251
268
|
* Returns true if the given prop name should be ignored in attributes
|
|
252
269
|
* serialization, or false otherwise.
|
|
253
|
-
*
|
|
254
|
-
* @param {string} attribute Attribute to check.
|
|
255
|
-
*
|
|
256
|
-
* @return {boolean} Whether attribute should be ignored.
|
|
270
|
+
* @param attribute
|
|
257
271
|
*/
|
|
258
|
-
function isInternalAttribute( attribute ) {
|
|
272
|
+
function isInternalAttribute( attribute: string ): boolean {
|
|
259
273
|
return 'key' === attribute || 'children' === attribute;
|
|
260
274
|
}
|
|
261
275
|
|
|
262
276
|
/**
|
|
263
277
|
* Returns the normal form of the element's attribute value for HTML.
|
|
264
|
-
*
|
|
265
|
-
* @param
|
|
266
|
-
* @param {*} value Non-normalized attribute value.
|
|
267
|
-
*
|
|
268
|
-
* @return {*} Normalized attribute value.
|
|
278
|
+
* @param attribute
|
|
279
|
+
* @param value
|
|
269
280
|
*/
|
|
270
|
-
function getNormalAttributeValue( attribute, value ) {
|
|
281
|
+
function getNormalAttributeValue( attribute: string, value: any ): any {
|
|
271
282
|
switch ( attribute ) {
|
|
272
283
|
case 'style':
|
|
273
284
|
return renderStyle( value );
|
|
@@ -275,13 +286,14 @@ function getNormalAttributeValue( attribute, value ) {
|
|
|
275
286
|
|
|
276
287
|
return value;
|
|
277
288
|
}
|
|
289
|
+
|
|
278
290
|
/**
|
|
279
291
|
* This is a map of all SVG attributes that have dashes. Map(lower case prop => dashed lower case attribute).
|
|
280
292
|
* We need this to render e.g strokeWidth as stroke-width.
|
|
281
293
|
*
|
|
282
294
|
* List from: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute.
|
|
283
295
|
*/
|
|
284
|
-
const SVG_ATTRIBUTE_WITH_DASHES_LIST = [
|
|
296
|
+
const SVG_ATTRIBUTE_WITH_DASHES_LIST: Record< string, string > = [
|
|
285
297
|
'accentHeight',
|
|
286
298
|
'alignmentBaseline',
|
|
287
299
|
'arabicForm',
|
|
@@ -355,11 +367,14 @@ const SVG_ATTRIBUTE_WITH_DASHES_LIST = [
|
|
|
355
367
|
'writingMode',
|
|
356
368
|
'xmlnsXlink',
|
|
357
369
|
'xHeight',
|
|
358
|
-
].reduce(
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
370
|
+
].reduce(
|
|
371
|
+
( map, attribute ) => {
|
|
372
|
+
// The keys are lower-cased for more robust lookup.
|
|
373
|
+
map[ attribute.toLowerCase() ] = attribute;
|
|
374
|
+
return map;
|
|
375
|
+
},
|
|
376
|
+
{} as Record< string, string >
|
|
377
|
+
);
|
|
363
378
|
|
|
364
379
|
/**
|
|
365
380
|
* This is a map of all case-sensitive SVG attributes. Map(lowercase key => proper case attribute).
|
|
@@ -367,7 +382,7 @@ const SVG_ATTRIBUTE_WITH_DASHES_LIST = [
|
|
|
367
382
|
* Note that this list only contains attributes that contain at least one capital letter.
|
|
368
383
|
* Lowercase attributes don't need mapping, since we lowercase all attributes by default.
|
|
369
384
|
*/
|
|
370
|
-
const CASE_SENSITIVE_SVG_ATTRIBUTES = [
|
|
385
|
+
const CASE_SENSITIVE_SVG_ATTRIBUTES: Record< string, string > = [
|
|
371
386
|
'allowReorder',
|
|
372
387
|
'attributeName',
|
|
373
388
|
'attributeType',
|
|
@@ -433,17 +448,20 @@ const CASE_SENSITIVE_SVG_ATTRIBUTES = [
|
|
|
433
448
|
'viewTarget',
|
|
434
449
|
'xChannelSelector',
|
|
435
450
|
'yChannelSelector',
|
|
436
|
-
].reduce(
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
451
|
+
].reduce(
|
|
452
|
+
( map, attribute ) => {
|
|
453
|
+
// The keys are lower-cased for more robust lookup.
|
|
454
|
+
map[ attribute.toLowerCase() ] = attribute;
|
|
455
|
+
return map;
|
|
456
|
+
},
|
|
457
|
+
{} as Record< string, string >
|
|
458
|
+
);
|
|
441
459
|
|
|
442
460
|
/**
|
|
443
461
|
* This is a map of all SVG attributes that have colons.
|
|
444
462
|
* Keys are lower-cased and stripped of their colons for more robust lookup.
|
|
445
463
|
*/
|
|
446
|
-
const SVG_ATTRIBUTES_WITH_COLONS = [
|
|
464
|
+
const SVG_ATTRIBUTES_WITH_COLONS: Record< string, string > = [
|
|
447
465
|
'xlink:actuate',
|
|
448
466
|
'xlink:arcrole',
|
|
449
467
|
'xlink:href',
|
|
@@ -455,19 +473,19 @@ const SVG_ATTRIBUTES_WITH_COLONS = [
|
|
|
455
473
|
'xml:lang',
|
|
456
474
|
'xml:space',
|
|
457
475
|
'xmlns:xlink',
|
|
458
|
-
].reduce(
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
476
|
+
].reduce(
|
|
477
|
+
( map, attribute ) => {
|
|
478
|
+
map[ attribute.replace( ':', '' ).toLowerCase() ] = attribute;
|
|
479
|
+
return map;
|
|
480
|
+
},
|
|
481
|
+
{} as Record< string, string >
|
|
482
|
+
);
|
|
462
483
|
|
|
463
484
|
/**
|
|
464
485
|
* Returns the normal form of the element's attribute name for HTML.
|
|
465
|
-
*
|
|
466
|
-
* @param {string} attribute Non-normalized attribute name.
|
|
467
|
-
*
|
|
468
|
-
* @return {string} Normalized attribute name.
|
|
486
|
+
* @param attribute
|
|
469
487
|
*/
|
|
470
|
-
function getNormalAttributeName( attribute ) {
|
|
488
|
+
function getNormalAttributeName( attribute: string ): string {
|
|
471
489
|
switch ( attribute ) {
|
|
472
490
|
case 'htmlFor':
|
|
473
491
|
return 'for';
|
|
@@ -496,12 +514,9 @@ function getNormalAttributeName( attribute ) {
|
|
|
496
514
|
* - Converts property names to kebab-case, e.g. 'backgroundColor' → 'background-color'
|
|
497
515
|
* - Leaves custom attributes alone, e.g. '--myBackgroundColor' → '--myBackgroundColor'
|
|
498
516
|
* - Converts vendor-prefixed property names to -kebab-case, e.g. 'MozTransform' → '-moz-transform'
|
|
499
|
-
*
|
|
500
|
-
* @param {string} property Property name.
|
|
501
|
-
*
|
|
502
|
-
* @return {string} Normalized property name.
|
|
517
|
+
* @param property
|
|
503
518
|
*/
|
|
504
|
-
function getNormalStylePropertyName( property ) {
|
|
519
|
+
function getNormalStylePropertyName( property: string ): string {
|
|
505
520
|
if ( property.startsWith( '--' ) ) {
|
|
506
521
|
return property;
|
|
507
522
|
}
|
|
@@ -516,13 +531,13 @@ function getNormalStylePropertyName( property ) {
|
|
|
516
531
|
/**
|
|
517
532
|
* Returns the normal form of the style property value for HTML. Appends a
|
|
518
533
|
* default pixel unit if numeric, not a unitless property, and not zero.
|
|
519
|
-
*
|
|
520
|
-
* @param
|
|
521
|
-
* @param {*} value Non-normalized property value.
|
|
522
|
-
*
|
|
523
|
-
* @return {*} Normalized property value.
|
|
534
|
+
* @param property
|
|
535
|
+
* @param value
|
|
524
536
|
*/
|
|
525
|
-
function getNormalStylePropertyValue(
|
|
537
|
+
function getNormalStylePropertyValue(
|
|
538
|
+
property: string,
|
|
539
|
+
value: any
|
|
540
|
+
): string | number {
|
|
526
541
|
if (
|
|
527
542
|
typeof value === 'number' &&
|
|
528
543
|
0 !== value &&
|
|
@@ -537,14 +552,15 @@ function getNormalStylePropertyValue( property, value ) {
|
|
|
537
552
|
|
|
538
553
|
/**
|
|
539
554
|
* Serializes a React element to string.
|
|
540
|
-
*
|
|
541
|
-
* @param
|
|
542
|
-
* @param
|
|
543
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
544
|
-
*
|
|
545
|
-
* @return {string} Serialized element.
|
|
555
|
+
* @param element
|
|
556
|
+
* @param context
|
|
557
|
+
* @param legacyContext
|
|
546
558
|
*/
|
|
547
|
-
export function renderElement(
|
|
559
|
+
export function renderElement(
|
|
560
|
+
element: React.ReactNode,
|
|
561
|
+
context?: any,
|
|
562
|
+
legacyContext: Record< string, any > = {}
|
|
563
|
+
): string {
|
|
548
564
|
if ( null === element || undefined === element || false === element ) {
|
|
549
565
|
return '';
|
|
550
566
|
}
|
|
@@ -561,9 +577,10 @@ export function renderElement( element, context, legacyContext = {} ) {
|
|
|
561
577
|
return element.toString();
|
|
562
578
|
}
|
|
563
579
|
|
|
564
|
-
const { type, props } =
|
|
565
|
-
|
|
566
|
-
|
|
580
|
+
const { type, props } = element as {
|
|
581
|
+
type?: any;
|
|
582
|
+
props?: any;
|
|
583
|
+
};
|
|
567
584
|
|
|
568
585
|
switch ( type ) {
|
|
569
586
|
case StrictMode:
|
|
@@ -571,7 +588,7 @@ export function renderElement( element, context, legacyContext = {} ) {
|
|
|
571
588
|
return renderChildren( props.children, context, legacyContext );
|
|
572
589
|
|
|
573
590
|
case RawHTML:
|
|
574
|
-
const { children, ...wrapperProps } = props;
|
|
591
|
+
const { children, ...wrapperProps } = props as RawHTMLProps;
|
|
575
592
|
|
|
576
593
|
return renderNativeComponent(
|
|
577
594
|
! Object.keys( wrapperProps ).length ? null : 'div',
|
|
@@ -627,21 +644,17 @@ export function renderElement( element, context, legacyContext = {} ) {
|
|
|
627
644
|
|
|
628
645
|
/**
|
|
629
646
|
* Serializes a native component type to string.
|
|
630
|
-
*
|
|
631
|
-
* @param
|
|
632
|
-
*
|
|
633
|
-
* @param
|
|
634
|
-
* @param {Object} [context] Context object.
|
|
635
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
636
|
-
*
|
|
637
|
-
* @return {string} Serialized element.
|
|
647
|
+
* @param type
|
|
648
|
+
* @param props
|
|
649
|
+
* @param context
|
|
650
|
+
* @param legacyContext
|
|
638
651
|
*/
|
|
639
652
|
export function renderNativeComponent(
|
|
640
|
-
type,
|
|
641
|
-
props,
|
|
642
|
-
context,
|
|
643
|
-
legacyContext = {}
|
|
644
|
-
) {
|
|
653
|
+
type: string | null,
|
|
654
|
+
props: HTMLProps,
|
|
655
|
+
context?: any,
|
|
656
|
+
legacyContext: Record< string, any > = {}
|
|
657
|
+
): string {
|
|
645
658
|
let content = '';
|
|
646
659
|
if ( type === 'textarea' && props.hasOwnProperty( 'value' ) ) {
|
|
647
660
|
// Textarea children can be assigned as value prop. If it is, render in
|
|
@@ -673,41 +686,23 @@ export function renderNativeComponent(
|
|
|
673
686
|
return '<' + type + attributes + '>' + content + '</' + type + '>';
|
|
674
687
|
}
|
|
675
688
|
|
|
676
|
-
/** @typedef {import('react').ComponentType} ComponentType */
|
|
677
|
-
|
|
678
689
|
/**
|
|
679
690
|
* Serializes a non-native component type to string.
|
|
680
|
-
*
|
|
681
|
-
* @param
|
|
682
|
-
* @param
|
|
683
|
-
* @param
|
|
684
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
685
|
-
*
|
|
686
|
-
* @return {string} Serialized element
|
|
691
|
+
* @param Component
|
|
692
|
+
* @param props
|
|
693
|
+
* @param context
|
|
694
|
+
* @param legacyContext
|
|
687
695
|
*/
|
|
688
696
|
export function renderComponent(
|
|
689
|
-
Component,
|
|
690
|
-
props,
|
|
691
|
-
context,
|
|
692
|
-
legacyContext = {}
|
|
693
|
-
) {
|
|
694
|
-
const instance = new
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
if (
|
|
699
|
-
typeof (
|
|
700
|
-
// Ignore reason: Current prettier reformats parens and mangles type assertion
|
|
701
|
-
// prettier-ignore
|
|
702
|
-
/** @type {{getChildContext?: () => unknown}} */ ( instance ).getChildContext
|
|
703
|
-
) === 'function'
|
|
704
|
-
) {
|
|
705
|
-
Object.assign(
|
|
706
|
-
legacyContext,
|
|
707
|
-
/** @type {{getChildContext?: () => unknown}} */ (
|
|
708
|
-
instance
|
|
709
|
-
).getChildContext()
|
|
710
|
-
);
|
|
697
|
+
Component: React.ComponentClass,
|
|
698
|
+
props: Record< string, any >,
|
|
699
|
+
context?: any,
|
|
700
|
+
legacyContext: Record< string, any > = {}
|
|
701
|
+
): string {
|
|
702
|
+
const instance = new Component( props, legacyContext ) as ComponentInstance;
|
|
703
|
+
|
|
704
|
+
if ( typeof instance.getChildContext === 'function' ) {
|
|
705
|
+
Object.assign( legacyContext, instance.getChildContext() );
|
|
711
706
|
}
|
|
712
707
|
|
|
713
708
|
const html = renderElement( instance.render(), context, legacyContext );
|
|
@@ -717,20 +712,21 @@ export function renderComponent(
|
|
|
717
712
|
|
|
718
713
|
/**
|
|
719
714
|
* Serializes an array of children to string.
|
|
720
|
-
*
|
|
721
|
-
* @param
|
|
722
|
-
* @param
|
|
723
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
724
|
-
*
|
|
725
|
-
* @return {string} Serialized children.
|
|
715
|
+
* @param children
|
|
716
|
+
* @param context
|
|
717
|
+
* @param legacyContext
|
|
726
718
|
*/
|
|
727
|
-
function renderChildren(
|
|
719
|
+
function renderChildren(
|
|
720
|
+
children: React.ReactNode,
|
|
721
|
+
context?: any,
|
|
722
|
+
legacyContext: Record< string, any > = {}
|
|
723
|
+
): string {
|
|
728
724
|
let result = '';
|
|
729
725
|
|
|
730
|
-
|
|
726
|
+
const childrenArray = Array.isArray( children ) ? children : [ children ];
|
|
731
727
|
|
|
732
|
-
for ( let i = 0; i <
|
|
733
|
-
const child =
|
|
728
|
+
for ( let i = 0; i < childrenArray.length; i++ ) {
|
|
729
|
+
const child = childrenArray[ i ];
|
|
734
730
|
|
|
735
731
|
result += renderElement( child, context, legacyContext );
|
|
736
732
|
}
|
|
@@ -740,12 +736,9 @@ function renderChildren( children, context, legacyContext = {} ) {
|
|
|
740
736
|
|
|
741
737
|
/**
|
|
742
738
|
* Renders a props object as a string of HTML attributes.
|
|
743
|
-
*
|
|
744
|
-
* @param {Object} props Props object.
|
|
745
|
-
*
|
|
746
|
-
* @return {string} Attributes string.
|
|
739
|
+
* @param props
|
|
747
740
|
*/
|
|
748
|
-
export function renderAttributes( props ) {
|
|
741
|
+
export function renderAttributes( props: Record< string, any > ): string {
|
|
749
742
|
let result = '';
|
|
750
743
|
|
|
751
744
|
for ( const key in props ) {
|
|
@@ -803,21 +796,19 @@ export function renderAttributes( props ) {
|
|
|
803
796
|
|
|
804
797
|
/**
|
|
805
798
|
* Renders a style object as a string attribute value.
|
|
806
|
-
*
|
|
807
|
-
* @param {Object} style Style object.
|
|
808
|
-
*
|
|
809
|
-
* @return {string} Style attribute value.
|
|
799
|
+
* @param style
|
|
810
800
|
*/
|
|
811
|
-
export function renderStyle( style ) {
|
|
801
|
+
export function renderStyle( style: StyleObject | string ): string | undefined {
|
|
812
802
|
// Only generate from object, e.g. tolerate string value.
|
|
813
803
|
if ( ! isPlainObject( style ) ) {
|
|
814
|
-
return style;
|
|
804
|
+
return style as string;
|
|
815
805
|
}
|
|
816
806
|
|
|
817
|
-
let result;
|
|
807
|
+
let result: string | undefined;
|
|
818
808
|
|
|
819
|
-
|
|
820
|
-
|
|
809
|
+
const styleObj = style as StyleObject;
|
|
810
|
+
for ( const property in styleObj ) {
|
|
811
|
+
const value = styleObj[ property ];
|
|
821
812
|
if ( null === value || undefined === value ) {
|
|
822
813
|
continue;
|
|
823
814
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Checks if the provided WP element is empty.
|
|
3
3
|
*
|
|
4
|
-
* @param
|
|
5
|
-
* @return
|
|
4
|
+
* @param element WP element to check.
|
|
5
|
+
* @return True when an element is considered empty.
|
|
6
6
|
*/
|
|
7
|
-
export const isEmptyElement = ( element ) => {
|
|
7
|
+
export const isEmptyElement = ( element: unknown ): boolean => {
|
|
8
8
|
if ( typeof element === 'number' ) {
|
|
9
9
|
return false;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
if ( typeof element?.valueOf() === 'string' || Array.isArray( element ) ) {
|
|
13
|
-
return ! element.length;
|
|
13
|
+
return ! ( element as { length: number } ).length;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
return ! element;
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","./src/react.js","./src/create-interpolate-element.js","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","./src/react-platform.js","./src/utils.js","./src/platform.js","../../node_modules/is-plain-object/is-plain-object.d.ts","../../node_modules/no-case/dist/index.d.ts","../../node_modules/pascal-case/dist/index.d.ts","../../node_modules/camel-case/dist/index.d.ts","../../node_modules/capital-case/dist/index.d.ts","../../node_modules/constant-case/dist/index.d.ts","../../node_modules/dot-case/dist/index.d.ts","../../node_modules/header-case/dist/index.d.ts","../../node_modules/param-case/dist/index.d.ts","../../node_modules/path-case/dist/index.d.ts","../../node_modules/sentence-case/dist/index.d.ts","../../node_modules/snake-case/dist/index.d.ts","../../node_modules/change-case/dist/index.d.ts","../escape-html/build-types/index.d.ts","./src/raw-html.js","./src/serialize.js","./src/index.js"],"fileIdsList":[[82],[79,80,81],[92],[91],[91,92,93,94,95,96,97,98,99,100,101],[94],[96],[82,83],[83,84,87,88,89,104,105],[82,85,86],[82,83,90,102,103,104]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","impliedFormat":1},{"version":"f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","impliedFormat":1},{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d9ca2ecb664e17fb14fdbb0ca52c17eb097902ea6aca6fd3e46d9fe4418c645d","signature":"4405cd67ec5f7f748fd793be0ce5842fa0808955b8e37518c011abfa5ab63ba5"},{"version":"896c40086816828d29b8cc83e24ef38313e1bfcc1d02378ce61cdf9ac2afee9c","signature":"4c506b14512049dfe6f4ceb172b13c6af03663f85ba61fc57efbe6c2e7be9f44"},{"version":"adb17fea4d847e1267ae1241fa1ac3917c7e332999ebdab388a24d82d4f58240","impliedFormat":1},{"version":"05321b823dd3781d0b6aac8700bfdc0c9181d56479fe52ba6a40c9196fd661a8","impliedFormat":1},{"version":"d2c71916172429e8d15d87c460a019368349661f478f16e50bf5bc9af4d45f69","signature":"472c14cdec534a465e866b6e1feee2d4e0d89c15fdc33ba80ff034fa0e80f3c1"},{"version":"2a99fa3c0f4461420236f7e60b5e61091abef2f2ab686c1eb21c82039542f77c","signature":"4d807d55c784b72f71c092c34c84d09b95c29500c30252538fd5cf9a0a788c0e"},{"version":"2fae859897ce0a3b090f600fbc1fbceb4004df7eede1aee016cd318536dcd231","signature":"df43a3968118d4b16618d7a0ac8ba89337fcce3c39e39984087ac34bf0cf250c"},{"version":"9a4c49a0b2bf8536b1f4a72f162f807d7a23aa27a816e9cd24cc965540ba4b35","impliedFormat":1},{"version":"b4e123af1af6049685c93073a15868b50aebdad666d422edc72fa2b585fa8a37","impliedFormat":1},{"version":"f86c04a744ebcede96bac376f9a2c90f2bd3c422740d91dda4ca6233199d4977","impliedFormat":1},{"version":"6ae1bddee5c790439bd992abd063b9b46e0cadd676c2a8562268d1869213ff60","impliedFormat":1},{"version":"606244fc97a6a74b877f2e924ba7e55b233bc6acb57d7bf40ba84a5be2d9adb0","impliedFormat":1},{"version":"4a1cabac71036b8a14f5db1b753b579f0c901c7d7b9227e6872dadf6efb104e8","impliedFormat":1},{"version":"062959a1d825b96639d87be35fe497cbd3f89544bf06fdad577bbfb85fcf604c","impliedFormat":1},{"version":"4c3672dc8f4e4fdd3d18525b22b31f1b5481f5a415db96550d3ac5163a6c3dd3","impliedFormat":1},{"version":"f9a69ca445010b91fe08f08c06e0f86d79c0d776905f9bdb828477cb2a1eb7fc","impliedFormat":1},{"version":"ad7fd0e7ee457d4884b3aaecbcbd2a80b6803407c4ce2540c296170d4c7918ef","impliedFormat":1},{"version":"a50ef21605f41c6acad6c3ef0307e5311b94963c846ca093c764b80cdb5318d6","impliedFormat":1},{"version":"74b4035dd26d09a417c44ca23ab5ee69b173f8c2f6b2e47350ab0795cf2d4a17","impliedFormat":1},{"version":"918f86ee2b19cc38cb8b1a4cf8f223eb228aaa39df3604c42f700fac2f0b3ea1","impliedFormat":1},"4856312da8d1d12a908b5172a20c0aea8e0818c9b2d80a83d8d4b186d0c63918",{"version":"cd9276299df63fd5f3561d3f37dff8340c086499223ea966617dd1e853b07d31","signature":"0477d6f95592fb84f29cf39d28ed5c77050940365cdc9841f0b94b216dee22a9"},{"version":"20aeeed6a5d73c63aeafcaa515a2b911b1347261f6bd31da16ae8d5b1e149bf1","signature":"4714d89e7ea47b8f79a4d448a11674b2a724f93ab03cfa6879dafbab0f0c5a15"},{"version":"e2877cc0e5f7bb33c7751b0e66c102d26cb2423e65908fde2ed3093d571ee264","signature":"af88a0b0f808a6721401550621bfe67c46c6fd55000305058e7c73600d119a9b"}],"root":[83,84,[87,89],[104,106]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"rootDir":"./src","skipDefaultLibCheck":true,"strict":true,"strictNullChecks":false,"target":99},"referencedMap":[[86,1],[85,1],[82,2],[93,3],[94,4],[102,5],[95,4],[96,4],[97,6],[98,7],[92,4],[99,7],[100,4],[101,7],[84,8],[106,9],[104,8],[87,10],[83,1],[105,11]],"latestChangedDtsFile":"./build-types/index.d.ts","version":"5.7.2"}
|
|
1
|
+
{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","./src/react.ts","./src/create-interpolate-element.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","./src/react-platform.ts","./src/utils.ts","./src/platform.ts","../../node_modules/is-plain-object/is-plain-object.d.ts","../../node_modules/no-case/dist/index.d.ts","../../node_modules/pascal-case/dist/index.d.ts","../../node_modules/camel-case/dist/index.d.ts","../../node_modules/capital-case/dist/index.d.ts","../../node_modules/constant-case/dist/index.d.ts","../../node_modules/dot-case/dist/index.d.ts","../../node_modules/header-case/dist/index.d.ts","../../node_modules/param-case/dist/index.d.ts","../../node_modules/path-case/dist/index.d.ts","../../node_modules/sentence-case/dist/index.d.ts","../../node_modules/snake-case/dist/index.d.ts","../../node_modules/change-case/dist/index.d.ts","../escape-html/build-types/index.d.ts","./src/raw-html.ts","./src/serialize.ts","./src/index.ts"],"fileIdsList":[[82],[79,80,81],[92],[91],[91,92,93,94,95,96,97,98,99,100,101],[94],[96],[83],[83,84,87,88,89,104,105],[85,86],[83,90,102,103,104]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","impliedFormat":1},{"version":"f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","impliedFormat":1},{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true,"impliedFormat":1},{"version":"de6bc5809c4852af25993a695f29172309da54d11cef6a8aad2351317af56d04","signature":"8edfedbbfbc673f4013427909a3129dd67823d8818026a1aa7bb9848633c0e06"},{"version":"eacee3ac00e345260fbaa596f98250151b37f5a4a88b753e21cd91db995c0011","signature":"95b7b0a5e159ca43e65b4f73d04ad52543f9a9ce1992de2cd4ba9dedfb4e9a89"},{"version":"adb17fea4d847e1267ae1241fa1ac3917c7e332999ebdab388a24d82d4f58240","impliedFormat":1},{"version":"05321b823dd3781d0b6aac8700bfdc0c9181d56479fe52ba6a40c9196fd661a8","impliedFormat":1},{"version":"d2c71916172429e8d15d87c460a019368349661f478f16e50bf5bc9af4d45f69","signature":"b3a0bb08302863aec642c6c07f5acce250c3feef596e29ddac6852627d81f5f3"},{"version":"b6bb5969bc8d2acef62c29483323c56219a83d06be0e7ac2e4411992830d97c7","signature":"a20f5aad5792eefce9e444a634a6187fe29c1aa38e4b4e04d2b258eaf31438da"},{"version":"50f3d0eb9f561cd49cb621cea930e3e8f0ca3ec9616c685c2741a94ff2dbf4d8","signature":"724dea542a8ce824d92eacad1dc5981aa4545407a0f026bc453a65dad69b92ea"},{"version":"9a4c49a0b2bf8536b1f4a72f162f807d7a23aa27a816e9cd24cc965540ba4b35","impliedFormat":1},{"version":"b4e123af1af6049685c93073a15868b50aebdad666d422edc72fa2b585fa8a37","impliedFormat":1},{"version":"f86c04a744ebcede96bac376f9a2c90f2bd3c422740d91dda4ca6233199d4977","impliedFormat":1},{"version":"6ae1bddee5c790439bd992abd063b9b46e0cadd676c2a8562268d1869213ff60","impliedFormat":1},{"version":"606244fc97a6a74b877f2e924ba7e55b233bc6acb57d7bf40ba84a5be2d9adb0","impliedFormat":1},{"version":"4a1cabac71036b8a14f5db1b753b579f0c901c7d7b9227e6872dadf6efb104e8","impliedFormat":1},{"version":"062959a1d825b96639d87be35fe497cbd3f89544bf06fdad577bbfb85fcf604c","impliedFormat":1},{"version":"4c3672dc8f4e4fdd3d18525b22b31f1b5481f5a415db96550d3ac5163a6c3dd3","impliedFormat":1},{"version":"f9a69ca445010b91fe08f08c06e0f86d79c0d776905f9bdb828477cb2a1eb7fc","impliedFormat":1},{"version":"ad7fd0e7ee457d4884b3aaecbcbd2a80b6803407c4ce2540c296170d4c7918ef","impliedFormat":1},{"version":"a50ef21605f41c6acad6c3ef0307e5311b94963c846ca093c764b80cdb5318d6","impliedFormat":1},{"version":"74b4035dd26d09a417c44ca23ab5ee69b173f8c2f6b2e47350ab0795cf2d4a17","impliedFormat":1},{"version":"918f86ee2b19cc38cb8b1a4cf8f223eb228aaa39df3604c42f700fac2f0b3ea1","impliedFormat":1},"4856312da8d1d12a908b5172a20c0aea8e0818c9b2d80a83d8d4b186d0c63918",{"version":"9d3ca12822940eb2b363009cf950be64c5808f54b0ecd68cdf4721545b5620aa","signature":"4ea75827e64f83b36d56a1d632fb8f28eec70bdf90eff351002a880690e3fd42"},{"version":"88d97cce1fb747710df8415a0b95d7599bed64d6b34110ae6f8d9f8de17c3081","signature":"b14cb61bd7e8a1bf3abfdeaf26d869afae03c8ca4cdb855510348b2e75337170"},"e2877cc0e5f7bb33c7751b0e66c102d26cb2423e65908fde2ed3093d571ee264"],"root":[83,84,[87,89],[104,106]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"rootDir":"./src","skipDefaultLibCheck":true,"strict":true,"strictNullChecks":false,"target":99},"referencedMap":[[86,1],[85,1],[82,2],[93,3],[94,4],[102,5],[95,4],[96,4],[97,6],[98,7],[92,4],[99,7],[100,4],[101,7],[84,8],[106,9],[104,8],[87,10],[83,1],[105,11]],"latestChangedDtsFile":"./build-types/index.d.ts","version":"5.7.2"}
|
|
File without changes
|
|
File without changes
|