@wordpress/element 6.30.0 → 6.30.1-next.836ecdcae.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/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 +36 -89
- 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 +36 -89
- 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} +131 -144
- 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
|
@@ -51,6 +51,32 @@ import RawHTML from './raw-html';
|
|
|
51
51
|
const Context = createContext( undefined );
|
|
52
52
|
Context.displayName = 'ElementContext';
|
|
53
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
|
+
|
|
54
80
|
const { Provider, Consumer } = Context;
|
|
55
81
|
|
|
56
82
|
const ForwardRef = forwardRef( () => {
|
|
@@ -59,17 +85,13 @@ const ForwardRef = forwardRef( () => {
|
|
|
59
85
|
|
|
60
86
|
/**
|
|
61
87
|
* Valid attribute types.
|
|
62
|
-
*
|
|
63
|
-
* @type {Set<string>}
|
|
64
88
|
*/
|
|
65
|
-
const ATTRIBUTES_TYPES = new Set( [ 'string', 'boolean', 'number' ] );
|
|
89
|
+
const ATTRIBUTES_TYPES = new Set< string >( [ 'string', 'boolean', 'number' ] );
|
|
66
90
|
|
|
67
91
|
/**
|
|
68
92
|
* Element tags which can be self-closing.
|
|
69
|
-
*
|
|
70
|
-
* @type {Set<string>}
|
|
71
93
|
*/
|
|
72
|
-
const SELF_CLOSING_TAGS = new Set( [
|
|
94
|
+
const SELF_CLOSING_TAGS = new Set< string >( [
|
|
73
95
|
'area',
|
|
74
96
|
'base',
|
|
75
97
|
'br',
|
|
@@ -100,10 +122,8 @@ const SELF_CLOSING_TAGS = new Set( [
|
|
|
100
122
|
* .reduce( ( result, tr ) => Object.assign( result, {
|
|
101
123
|
* [ tr.firstChild.textContent.trim() ]: true
|
|
102
124
|
* } ), {} ) ).sort();
|
|
103
|
-
*
|
|
104
|
-
* @type {Set<string>}
|
|
105
125
|
*/
|
|
106
|
-
const BOOLEAN_ATTRIBUTES = new Set( [
|
|
126
|
+
const BOOLEAN_ATTRIBUTES = new Set< string >( [
|
|
107
127
|
'allowfullscreen',
|
|
108
128
|
'allowpaymentrequest',
|
|
109
129
|
'allowusermedia',
|
|
@@ -151,10 +171,8 @@ const BOOLEAN_ATTRIBUTES = new Set( [
|
|
|
151
171
|
* Some notable omissions:
|
|
152
172
|
*
|
|
153
173
|
* - `alt`: https://blog.whatwg.org/omit-alt
|
|
154
|
-
*
|
|
155
|
-
* @type {Set<string>}
|
|
156
174
|
*/
|
|
157
|
-
const ENUMERATED_ATTRIBUTES = new Set( [
|
|
175
|
+
const ENUMERATED_ATTRIBUTES = new Set< string >( [
|
|
158
176
|
'autocapitalize',
|
|
159
177
|
'autocomplete',
|
|
160
178
|
'charset',
|
|
@@ -194,10 +212,8 @@ const ENUMERATED_ATTRIBUTES = new Set( [
|
|
|
194
212
|
* ) )
|
|
195
213
|
* .map( ( [ key ] ) => key )
|
|
196
214
|
* .sort();
|
|
197
|
-
*
|
|
198
|
-
* @type {Set<string>}
|
|
199
215
|
*/
|
|
200
|
-
const CSS_PROPERTIES_SUPPORTS_UNITLESS = new Set( [
|
|
216
|
+
const CSS_PROPERTIES_SUPPORTS_UNITLESS = new Set< string >( [
|
|
201
217
|
'animation',
|
|
202
218
|
'animationIterationCount',
|
|
203
219
|
'baselineShift',
|
|
@@ -241,37 +257,28 @@ const CSS_PROPERTIES_SUPPORTS_UNITLESS = new Set( [
|
|
|
241
257
|
/**
|
|
242
258
|
* Returns true if the specified string is prefixed by one of an array of
|
|
243
259
|
* possible prefixes.
|
|
244
|
-
*
|
|
245
|
-
* @param
|
|
246
|
-
* @param {string[]} prefixes Possible prefixes.
|
|
247
|
-
*
|
|
248
|
-
* @return {boolean} Whether string has prefix.
|
|
260
|
+
* @param string
|
|
261
|
+
* @param prefixes
|
|
249
262
|
*/
|
|
250
|
-
export function hasPrefix( string, prefixes ) {
|
|
263
|
+
export function hasPrefix( string: string, prefixes: string[] ): boolean {
|
|
251
264
|
return prefixes.some( ( prefix ) => string.indexOf( prefix ) === 0 );
|
|
252
265
|
}
|
|
253
266
|
|
|
254
267
|
/**
|
|
255
268
|
* Returns true if the given prop name should be ignored in attributes
|
|
256
269
|
* serialization, or false otherwise.
|
|
257
|
-
*
|
|
258
|
-
* @param {string} attribute Attribute to check.
|
|
259
|
-
*
|
|
260
|
-
* @return {boolean} Whether attribute should be ignored.
|
|
270
|
+
* @param attribute
|
|
261
271
|
*/
|
|
262
|
-
function isInternalAttribute( attribute ) {
|
|
272
|
+
function isInternalAttribute( attribute: string ): boolean {
|
|
263
273
|
return 'key' === attribute || 'children' === attribute;
|
|
264
274
|
}
|
|
265
275
|
|
|
266
276
|
/**
|
|
267
277
|
* Returns the normal form of the element's attribute value for HTML.
|
|
268
|
-
*
|
|
269
|
-
* @param
|
|
270
|
-
* @param {*} value Non-normalized attribute value.
|
|
271
|
-
*
|
|
272
|
-
* @return {*} Normalized attribute value.
|
|
278
|
+
* @param attribute
|
|
279
|
+
* @param value
|
|
273
280
|
*/
|
|
274
|
-
function getNormalAttributeValue( attribute, value ) {
|
|
281
|
+
function getNormalAttributeValue( attribute: string, value: any ): any {
|
|
275
282
|
switch ( attribute ) {
|
|
276
283
|
case 'style':
|
|
277
284
|
return renderStyle( value );
|
|
@@ -279,13 +286,14 @@ function getNormalAttributeValue( attribute, value ) {
|
|
|
279
286
|
|
|
280
287
|
return value;
|
|
281
288
|
}
|
|
289
|
+
|
|
282
290
|
/**
|
|
283
291
|
* This is a map of all SVG attributes that have dashes. Map(lower case prop => dashed lower case attribute).
|
|
284
292
|
* We need this to render e.g strokeWidth as stroke-width.
|
|
285
293
|
*
|
|
286
294
|
* List from: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute.
|
|
287
295
|
*/
|
|
288
|
-
const SVG_ATTRIBUTE_WITH_DASHES_LIST = [
|
|
296
|
+
const SVG_ATTRIBUTE_WITH_DASHES_LIST: Record< string, string > = [
|
|
289
297
|
'accentHeight',
|
|
290
298
|
'alignmentBaseline',
|
|
291
299
|
'arabicForm',
|
|
@@ -359,11 +367,14 @@ const SVG_ATTRIBUTE_WITH_DASHES_LIST = [
|
|
|
359
367
|
'writingMode',
|
|
360
368
|
'xmlnsXlink',
|
|
361
369
|
'xHeight',
|
|
362
|
-
].reduce(
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
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
|
+
);
|
|
367
378
|
|
|
368
379
|
/**
|
|
369
380
|
* This is a map of all case-sensitive SVG attributes. Map(lowercase key => proper case attribute).
|
|
@@ -371,7 +382,7 @@ const SVG_ATTRIBUTE_WITH_DASHES_LIST = [
|
|
|
371
382
|
* Note that this list only contains attributes that contain at least one capital letter.
|
|
372
383
|
* Lowercase attributes don't need mapping, since we lowercase all attributes by default.
|
|
373
384
|
*/
|
|
374
|
-
const CASE_SENSITIVE_SVG_ATTRIBUTES = [
|
|
385
|
+
const CASE_SENSITIVE_SVG_ATTRIBUTES: Record< string, string > = [
|
|
375
386
|
'allowReorder',
|
|
376
387
|
'attributeName',
|
|
377
388
|
'attributeType',
|
|
@@ -437,17 +448,20 @@ const CASE_SENSITIVE_SVG_ATTRIBUTES = [
|
|
|
437
448
|
'viewTarget',
|
|
438
449
|
'xChannelSelector',
|
|
439
450
|
'yChannelSelector',
|
|
440
|
-
].reduce(
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
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
|
+
);
|
|
445
459
|
|
|
446
460
|
/**
|
|
447
461
|
* This is a map of all SVG attributes that have colons.
|
|
448
462
|
* Keys are lower-cased and stripped of their colons for more robust lookup.
|
|
449
463
|
*/
|
|
450
|
-
const SVG_ATTRIBUTES_WITH_COLONS = [
|
|
464
|
+
const SVG_ATTRIBUTES_WITH_COLONS: Record< string, string > = [
|
|
451
465
|
'xlink:actuate',
|
|
452
466
|
'xlink:arcrole',
|
|
453
467
|
'xlink:href',
|
|
@@ -459,19 +473,19 @@ const SVG_ATTRIBUTES_WITH_COLONS = [
|
|
|
459
473
|
'xml:lang',
|
|
460
474
|
'xml:space',
|
|
461
475
|
'xmlns:xlink',
|
|
462
|
-
].reduce(
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
476
|
+
].reduce(
|
|
477
|
+
( map, attribute ) => {
|
|
478
|
+
map[ attribute.replace( ':', '' ).toLowerCase() ] = attribute;
|
|
479
|
+
return map;
|
|
480
|
+
},
|
|
481
|
+
{} as Record< string, string >
|
|
482
|
+
);
|
|
466
483
|
|
|
467
484
|
/**
|
|
468
485
|
* Returns the normal form of the element's attribute name for HTML.
|
|
469
|
-
*
|
|
470
|
-
* @param {string} attribute Non-normalized attribute name.
|
|
471
|
-
*
|
|
472
|
-
* @return {string} Normalized attribute name.
|
|
486
|
+
* @param attribute
|
|
473
487
|
*/
|
|
474
|
-
function getNormalAttributeName( attribute ) {
|
|
488
|
+
function getNormalAttributeName( attribute: string ): string {
|
|
475
489
|
switch ( attribute ) {
|
|
476
490
|
case 'htmlFor':
|
|
477
491
|
return 'for';
|
|
@@ -500,12 +514,9 @@ function getNormalAttributeName( attribute ) {
|
|
|
500
514
|
* - Converts property names to kebab-case, e.g. 'backgroundColor' → 'background-color'
|
|
501
515
|
* - Leaves custom attributes alone, e.g. '--myBackgroundColor' → '--myBackgroundColor'
|
|
502
516
|
* - Converts vendor-prefixed property names to -kebab-case, e.g. 'MozTransform' → '-moz-transform'
|
|
503
|
-
*
|
|
504
|
-
* @param {string} property Property name.
|
|
505
|
-
*
|
|
506
|
-
* @return {string} Normalized property name.
|
|
517
|
+
* @param property
|
|
507
518
|
*/
|
|
508
|
-
function getNormalStylePropertyName( property ) {
|
|
519
|
+
function getNormalStylePropertyName( property: string ): string {
|
|
509
520
|
if ( property.startsWith( '--' ) ) {
|
|
510
521
|
return property;
|
|
511
522
|
}
|
|
@@ -520,13 +531,13 @@ function getNormalStylePropertyName( property ) {
|
|
|
520
531
|
/**
|
|
521
532
|
* Returns the normal form of the style property value for HTML. Appends a
|
|
522
533
|
* default pixel unit if numeric, not a unitless property, and not zero.
|
|
523
|
-
*
|
|
524
|
-
* @param
|
|
525
|
-
* @param {*} value Non-normalized property value.
|
|
526
|
-
*
|
|
527
|
-
* @return {*} Normalized property value.
|
|
534
|
+
* @param property
|
|
535
|
+
* @param value
|
|
528
536
|
*/
|
|
529
|
-
function getNormalStylePropertyValue(
|
|
537
|
+
function getNormalStylePropertyValue(
|
|
538
|
+
property: string,
|
|
539
|
+
value: any
|
|
540
|
+
): string | number {
|
|
530
541
|
if (
|
|
531
542
|
typeof value === 'number' &&
|
|
532
543
|
0 !== value &&
|
|
@@ -541,14 +552,15 @@ function getNormalStylePropertyValue( property, value ) {
|
|
|
541
552
|
|
|
542
553
|
/**
|
|
543
554
|
* Serializes a React element to string.
|
|
544
|
-
*
|
|
545
|
-
* @param
|
|
546
|
-
* @param
|
|
547
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
548
|
-
*
|
|
549
|
-
* @return {string} Serialized element.
|
|
555
|
+
* @param element
|
|
556
|
+
* @param context
|
|
557
|
+
* @param legacyContext
|
|
550
558
|
*/
|
|
551
|
-
export function renderElement(
|
|
559
|
+
export function renderElement(
|
|
560
|
+
element: React.ReactNode,
|
|
561
|
+
context?: any,
|
|
562
|
+
legacyContext: Record< string, any > = {}
|
|
563
|
+
): string {
|
|
552
564
|
if ( null === element || undefined === element || false === element ) {
|
|
553
565
|
return '';
|
|
554
566
|
}
|
|
@@ -565,9 +577,10 @@ export function renderElement( element, context, legacyContext = {} ) {
|
|
|
565
577
|
return element.toString();
|
|
566
578
|
}
|
|
567
579
|
|
|
568
|
-
const { type, props } =
|
|
569
|
-
|
|
570
|
-
|
|
580
|
+
const { type, props } = element as {
|
|
581
|
+
type?: any;
|
|
582
|
+
props?: any;
|
|
583
|
+
};
|
|
571
584
|
|
|
572
585
|
switch ( type ) {
|
|
573
586
|
case StrictMode:
|
|
@@ -575,7 +588,7 @@ export function renderElement( element, context, legacyContext = {} ) {
|
|
|
575
588
|
return renderChildren( props.children, context, legacyContext );
|
|
576
589
|
|
|
577
590
|
case RawHTML:
|
|
578
|
-
const { children, ...wrapperProps } = props;
|
|
591
|
+
const { children, ...wrapperProps } = props as RawHTMLProps;
|
|
579
592
|
|
|
580
593
|
return renderNativeComponent(
|
|
581
594
|
! Object.keys( wrapperProps ).length ? null : 'div',
|
|
@@ -631,21 +644,17 @@ export function renderElement( element, context, legacyContext = {} ) {
|
|
|
631
644
|
|
|
632
645
|
/**
|
|
633
646
|
* Serializes a native component type to string.
|
|
634
|
-
*
|
|
635
|
-
* @param
|
|
636
|
-
*
|
|
637
|
-
* @param
|
|
638
|
-
* @param {Object} [context] Context object.
|
|
639
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
640
|
-
*
|
|
641
|
-
* @return {string} Serialized element.
|
|
647
|
+
* @param type
|
|
648
|
+
* @param props
|
|
649
|
+
* @param context
|
|
650
|
+
* @param legacyContext
|
|
642
651
|
*/
|
|
643
652
|
export function renderNativeComponent(
|
|
644
|
-
type,
|
|
645
|
-
props,
|
|
646
|
-
context,
|
|
647
|
-
legacyContext = {}
|
|
648
|
-
) {
|
|
653
|
+
type: string | null,
|
|
654
|
+
props: HTMLProps,
|
|
655
|
+
context?: any,
|
|
656
|
+
legacyContext: Record< string, any > = {}
|
|
657
|
+
): string {
|
|
649
658
|
let content = '';
|
|
650
659
|
if ( type === 'textarea' && props.hasOwnProperty( 'value' ) ) {
|
|
651
660
|
// Textarea children can be assigned as value prop. If it is, render in
|
|
@@ -677,41 +686,23 @@ export function renderNativeComponent(
|
|
|
677
686
|
return '<' + type + attributes + '>' + content + '</' + type + '>';
|
|
678
687
|
}
|
|
679
688
|
|
|
680
|
-
/** @typedef {import('react').ComponentType} ComponentType */
|
|
681
|
-
|
|
682
689
|
/**
|
|
683
690
|
* Serializes a non-native component type to string.
|
|
684
|
-
*
|
|
685
|
-
* @param
|
|
686
|
-
* @param
|
|
687
|
-
* @param
|
|
688
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
689
|
-
*
|
|
690
|
-
* @return {string} Serialized element
|
|
691
|
+
* @param Component
|
|
692
|
+
* @param props
|
|
693
|
+
* @param context
|
|
694
|
+
* @param legacyContext
|
|
691
695
|
*/
|
|
692
696
|
export function renderComponent(
|
|
693
|
-
Component,
|
|
694
|
-
props,
|
|
695
|
-
context,
|
|
696
|
-
legacyContext = {}
|
|
697
|
-
) {
|
|
698
|
-
const instance = new
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
if (
|
|
703
|
-
typeof (
|
|
704
|
-
// Ignore reason: Current prettier reformats parens and mangles type assertion
|
|
705
|
-
// prettier-ignore
|
|
706
|
-
/** @type {{getChildContext?: () => unknown}} */ ( instance ).getChildContext
|
|
707
|
-
) === 'function'
|
|
708
|
-
) {
|
|
709
|
-
Object.assign(
|
|
710
|
-
legacyContext,
|
|
711
|
-
/** @type {{getChildContext?: () => unknown}} */ (
|
|
712
|
-
instance
|
|
713
|
-
).getChildContext()
|
|
714
|
-
);
|
|
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() );
|
|
715
706
|
}
|
|
716
707
|
|
|
717
708
|
const html = renderElement( instance.render(), context, legacyContext );
|
|
@@ -721,20 +712,21 @@ export function renderComponent(
|
|
|
721
712
|
|
|
722
713
|
/**
|
|
723
714
|
* Serializes an array of children to string.
|
|
724
|
-
*
|
|
725
|
-
* @param
|
|
726
|
-
* @param
|
|
727
|
-
* @param {Object} [legacyContext] Legacy context object.
|
|
728
|
-
*
|
|
729
|
-
* @return {string} Serialized children.
|
|
715
|
+
* @param children
|
|
716
|
+
* @param context
|
|
717
|
+
* @param legacyContext
|
|
730
718
|
*/
|
|
731
|
-
function renderChildren(
|
|
719
|
+
function renderChildren(
|
|
720
|
+
children: React.ReactNode,
|
|
721
|
+
context?: any,
|
|
722
|
+
legacyContext: Record< string, any > = {}
|
|
723
|
+
): string {
|
|
732
724
|
let result = '';
|
|
733
725
|
|
|
734
|
-
|
|
726
|
+
const childrenArray = Array.isArray( children ) ? children : [ children ];
|
|
735
727
|
|
|
736
|
-
for ( let i = 0; i <
|
|
737
|
-
const child =
|
|
728
|
+
for ( let i = 0; i < childrenArray.length; i++ ) {
|
|
729
|
+
const child = childrenArray[ i ];
|
|
738
730
|
|
|
739
731
|
result += renderElement( child, context, legacyContext );
|
|
740
732
|
}
|
|
@@ -744,12 +736,9 @@ function renderChildren( children, context, legacyContext = {} ) {
|
|
|
744
736
|
|
|
745
737
|
/**
|
|
746
738
|
* Renders a props object as a string of HTML attributes.
|
|
747
|
-
*
|
|
748
|
-
* @param {Object} props Props object.
|
|
749
|
-
*
|
|
750
|
-
* @return {string} Attributes string.
|
|
739
|
+
* @param props
|
|
751
740
|
*/
|
|
752
|
-
export function renderAttributes( props ) {
|
|
741
|
+
export function renderAttributes( props: Record< string, any > ): string {
|
|
753
742
|
let result = '';
|
|
754
743
|
|
|
755
744
|
for ( const key in props ) {
|
|
@@ -807,21 +796,19 @@ export function renderAttributes( props ) {
|
|
|
807
796
|
|
|
808
797
|
/**
|
|
809
798
|
* Renders a style object as a string attribute value.
|
|
810
|
-
*
|
|
811
|
-
* @param {Object} style Style object.
|
|
812
|
-
*
|
|
813
|
-
* @return {string} Style attribute value.
|
|
799
|
+
* @param style
|
|
814
800
|
*/
|
|
815
|
-
export function renderStyle( style ) {
|
|
801
|
+
export function renderStyle( style: StyleObject | string ): string | undefined {
|
|
816
802
|
// Only generate from object, e.g. tolerate string value.
|
|
817
803
|
if ( ! isPlainObject( style ) ) {
|
|
818
|
-
return style;
|
|
804
|
+
return style as string;
|
|
819
805
|
}
|
|
820
806
|
|
|
821
|
-
let result;
|
|
807
|
+
let result: string | undefined;
|
|
822
808
|
|
|
823
|
-
|
|
824
|
-
|
|
809
|
+
const styleObj = style as StyleObject;
|
|
810
|
+
for ( const property in styleObj ) {
|
|
811
|
+
const value = styleObj[ property ];
|
|
825
812
|
if ( null === value || undefined === value ) {
|
|
826
813
|
continue;
|
|
827
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":"c55afc67b4a139b35095585c4cf2b0afd770ed96f687919168aea1ec2ed51b1a","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
|