@wordpress/a11y 3.2.2-next.253d9b6e21.0 → 3.2.4
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
CHANGED
|
@@ -10,7 +10,7 @@ Install the module
|
|
|
10
10
|
npm install @wordpress/a11y --save
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for
|
|
13
|
+
_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for such language features and APIs, you should include [the polyfill shipped in `@wordpress/babel-preset-default`](https://github.com/WordPress/gutenberg/tree/HEAD/packages/babel-preset-default#polyfill) in your code._
|
|
14
14
|
|
|
15
15
|
## API
|
|
16
16
|
|
package/build/add-container.js
CHANGED
|
@@ -12,7 +12,8 @@ exports.default = addContainer;
|
|
|
12
12
|
*
|
|
13
13
|
* @return {HTMLDivElement} The ARIA live region HTML element.
|
|
14
14
|
*/
|
|
15
|
-
function addContainer(
|
|
15
|
+
function addContainer() {
|
|
16
|
+
let ariaLive = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'polite';
|
|
16
17
|
const container = document.createElement('div');
|
|
17
18
|
container.id = `a11y-speak-${ariaLive}`;
|
|
18
19
|
container.className = 'a11y-speak-region';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["@wordpress/a11y/src/add-container.js"],"names":["addContainer","ariaLive","container","document","createElement","id","className","setAttribute","body","appendChild"],"mappings":";;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAASA,YAAT,
|
|
1
|
+
{"version":3,"sources":["@wordpress/a11y/src/add-container.js"],"names":["addContainer","ariaLive","container","document","createElement","id","className","setAttribute","body","appendChild"],"mappings":";;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAASA,YAAT,GAA6C;AAAA,MAAtBC,QAAsB,uEAAX,QAAW;AAC3D,QAAMC,SAAS,GAAGC,QAAQ,CAACC,aAAT,CAAwB,KAAxB,CAAlB;AACAF,EAAAA,SAAS,CAACG,EAAV,GAAgB,cAAcJ,QAAU,EAAxC;AACAC,EAAAA,SAAS,CAACI,SAAV,GAAsB,mBAAtB;AAEAJ,EAAAA,SAAS,CAACK,YAAV,CACC,OADD,EAEC,wBACC,eADD,GAEC,aAFD,GAGC,cAHD,GAIC,aAJD,GAKC,mBALD,GAMC,iCAND,GAOC,gCAPD,GAQC,wBARD,GASC,YATD,GAUC,+BAZF;AAcAL,EAAAA,SAAS,CAACK,YAAV,CAAwB,WAAxB,EAAqCN,QAArC;AACAC,EAAAA,SAAS,CAACK,YAAV,CAAwB,eAAxB,EAAyC,gBAAzC;AACAL,EAAAA,SAAS,CAACK,YAAV,CAAwB,aAAxB,EAAuC,MAAvC;AAEA,QAAM;AAAEC,IAAAA;AAAF,MAAWL,QAAjB;;AACA,MAAKK,IAAL,EAAY;AACXA,IAAAA,IAAI,CAACC,WAAL,CAAkBP,SAAlB;AACA;;AAED,SAAOA,SAAP;AACA","sourcesContent":["/**\n * Build the live regions markup.\n *\n * @param {string} [ariaLive] Value for the 'aria-live' attribute; default: 'polite'.\n *\n * @return {HTMLDivElement} The ARIA live region HTML element.\n */\nexport default function addContainer( ariaLive = 'polite' ) {\n\tconst container = document.createElement( 'div' );\n\tcontainer.id = `a11y-speak-${ ariaLive }`;\n\tcontainer.className = 'a11y-speak-region';\n\n\tcontainer.setAttribute(\n\t\t'style',\n\t\t'position: absolute;' +\n\t\t\t'margin: -1px;' +\n\t\t\t'padding: 0;' +\n\t\t\t'height: 1px;' +\n\t\t\t'width: 1px;' +\n\t\t\t'overflow: hidden;' +\n\t\t\t'clip: rect(1px, 1px, 1px, 1px);' +\n\t\t\t'-webkit-clip-path: inset(50%);' +\n\t\t\t'clip-path: inset(50%);' +\n\t\t\t'border: 0;' +\n\t\t\t'word-wrap: normal !important;'\n\t);\n\tcontainer.setAttribute( 'aria-live', ariaLive );\n\tcontainer.setAttribute( 'aria-relevant', 'additions text' );\n\tcontainer.setAttribute( 'aria-atomic', 'true' );\n\n\tconst { body } = document;\n\tif ( body ) {\n\t\tbody.appendChild( container );\n\t}\n\n\treturn container;\n}\n"]}
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @return {HTMLDivElement} The ARIA live region HTML element.
|
|
7
7
|
*/
|
|
8
|
-
export default function addContainer(
|
|
8
|
+
export default function addContainer() {
|
|
9
|
+
let ariaLive = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'polite';
|
|
9
10
|
const container = document.createElement('div');
|
|
10
11
|
container.id = `a11y-speak-${ariaLive}`;
|
|
11
12
|
container.className = 'a11y-speak-region';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["@wordpress/a11y/src/add-container.js"],"names":["addContainer","ariaLive","container","document","createElement","id","className","setAttribute","body","appendChild"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,SAASA,YAAT,
|
|
1
|
+
{"version":3,"sources":["@wordpress/a11y/src/add-container.js"],"names":["addContainer","ariaLive","container","document","createElement","id","className","setAttribute","body","appendChild"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,SAASA,YAAT,GAA6C;AAAA,MAAtBC,QAAsB,uEAAX,QAAW;AAC3D,QAAMC,SAAS,GAAGC,QAAQ,CAACC,aAAT,CAAwB,KAAxB,CAAlB;AACAF,EAAAA,SAAS,CAACG,EAAV,GAAgB,cAAcJ,QAAU,EAAxC;AACAC,EAAAA,SAAS,CAACI,SAAV,GAAsB,mBAAtB;AAEAJ,EAAAA,SAAS,CAACK,YAAV,CACC,OADD,EAEC,wBACC,eADD,GAEC,aAFD,GAGC,cAHD,GAIC,aAJD,GAKC,mBALD,GAMC,iCAND,GAOC,gCAPD,GAQC,wBARD,GASC,YATD,GAUC,+BAZF;AAcAL,EAAAA,SAAS,CAACK,YAAV,CAAwB,WAAxB,EAAqCN,QAArC;AACAC,EAAAA,SAAS,CAACK,YAAV,CAAwB,eAAxB,EAAyC,gBAAzC;AACAL,EAAAA,SAAS,CAACK,YAAV,CAAwB,aAAxB,EAAuC,MAAvC;AAEA,QAAM;AAAEC,IAAAA;AAAF,MAAWL,QAAjB;;AACA,MAAKK,IAAL,EAAY;AACXA,IAAAA,IAAI,CAACC,WAAL,CAAkBP,SAAlB;AACA;;AAED,SAAOA,SAAP;AACA","sourcesContent":["/**\n * Build the live regions markup.\n *\n * @param {string} [ariaLive] Value for the 'aria-live' attribute; default: 'polite'.\n *\n * @return {HTMLDivElement} The ARIA live region HTML element.\n */\nexport default function addContainer( ariaLive = 'polite' ) {\n\tconst container = document.createElement( 'div' );\n\tcontainer.id = `a11y-speak-${ ariaLive }`;\n\tcontainer.className = 'a11y-speak-region';\n\n\tcontainer.setAttribute(\n\t\t'style',\n\t\t'position: absolute;' +\n\t\t\t'margin: -1px;' +\n\t\t\t'padding: 0;' +\n\t\t\t'height: 1px;' +\n\t\t\t'width: 1px;' +\n\t\t\t'overflow: hidden;' +\n\t\t\t'clip: rect(1px, 1px, 1px, 1px);' +\n\t\t\t'-webkit-clip-path: inset(50%);' +\n\t\t\t'clip-path: inset(50%);' +\n\t\t\t'border: 0;' +\n\t\t\t'word-wrap: normal !important;'\n\t);\n\tcontainer.setAttribute( 'aria-live', ariaLive );\n\tcontainer.setAttribute( 'aria-relevant', 'additions text' );\n\tcontainer.setAttribute( 'aria-atomic', 'true' );\n\n\tconst { body } = document;\n\tif ( body ) {\n\t\tbody.appendChild( container );\n\t}\n\n\treturn container;\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/a11y",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4",
|
|
4
4
|
"description": "Accessibility (a11y) utilities for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"react-native": "src/index",
|
|
29
29
|
"types": "build-types",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@babel/runtime": "^7.
|
|
32
|
-
"@wordpress/dom-ready": "^3.2.
|
|
33
|
-
"@wordpress/i18n": "^4.2.
|
|
31
|
+
"@babel/runtime": "^7.16.0",
|
|
32
|
+
"@wordpress/dom-ready": "^3.2.3",
|
|
33
|
+
"@wordpress/i18n": "^4.2.4"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "9a1dd3474d937468e4cf9caf9886ad61ef0a8f50"
|
|
39
39
|
}
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1,501 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"program": {
|
|
3
|
-
"fileInfos": {
|
|
4
|
-
"../../node_modules/typescript/lib/lib.es5.d.ts": {
|
|
5
|
-
"version": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
|
|
6
|
-
"signature": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
|
|
7
|
-
"affectsGlobalScope": true
|
|
8
|
-
},
|
|
9
|
-
"../../node_modules/typescript/lib/lib.es2015.d.ts": {
|
|
10
|
-
"version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
|
|
11
|
-
"signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
|
|
12
|
-
"affectsGlobalScope": false
|
|
13
|
-
},
|
|
14
|
-
"../../node_modules/typescript/lib/lib.es2016.d.ts": {
|
|
15
|
-
"version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
|
|
16
|
-
"signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
|
|
17
|
-
"affectsGlobalScope": false
|
|
18
|
-
},
|
|
19
|
-
"../../node_modules/typescript/lib/lib.es2017.d.ts": {
|
|
20
|
-
"version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
|
|
21
|
-
"signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
|
|
22
|
-
"affectsGlobalScope": false
|
|
23
|
-
},
|
|
24
|
-
"../../node_modules/typescript/lib/lib.es2018.d.ts": {
|
|
25
|
-
"version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
|
|
26
|
-
"signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
|
|
27
|
-
"affectsGlobalScope": false
|
|
28
|
-
},
|
|
29
|
-
"../../node_modules/typescript/lib/lib.es2019.d.ts": {
|
|
30
|
-
"version": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
|
|
31
|
-
"signature": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
|
|
32
|
-
"affectsGlobalScope": false
|
|
33
|
-
},
|
|
34
|
-
"../../node_modules/typescript/lib/lib.es2020.d.ts": {
|
|
35
|
-
"version": "e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",
|
|
36
|
-
"signature": "e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",
|
|
37
|
-
"affectsGlobalScope": false
|
|
38
|
-
},
|
|
39
|
-
"../../node_modules/typescript/lib/lib.esnext.d.ts": {
|
|
40
|
-
"version": "fc7a21dd3ee27fd0a9ff1c46534efcd9c3cec51a445b479bb326d871c0aa8302",
|
|
41
|
-
"signature": "fc7a21dd3ee27fd0a9ff1c46534efcd9c3cec51a445b479bb326d871c0aa8302",
|
|
42
|
-
"affectsGlobalScope": false
|
|
43
|
-
},
|
|
44
|
-
"../../node_modules/typescript/lib/lib.dom.d.ts": {
|
|
45
|
-
"version": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
|
|
46
|
-
"signature": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
|
|
47
|
-
"affectsGlobalScope": true
|
|
48
|
-
},
|
|
49
|
-
"../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
|
|
50
|
-
"version": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
|
|
51
|
-
"signature": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
|
|
52
|
-
"affectsGlobalScope": true
|
|
53
|
-
},
|
|
54
|
-
"../../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
|
|
55
|
-
"version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
|
|
56
|
-
"signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
|
|
57
|
-
"affectsGlobalScope": true
|
|
58
|
-
},
|
|
59
|
-
"../../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
|
|
60
|
-
"version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
|
|
61
|
-
"signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
|
|
62
|
-
"affectsGlobalScope": true
|
|
63
|
-
},
|
|
64
|
-
"../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
|
|
65
|
-
"version": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
|
|
66
|
-
"signature": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
|
|
67
|
-
"affectsGlobalScope": true
|
|
68
|
-
},
|
|
69
|
-
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
|
|
70
|
-
"version": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
|
|
71
|
-
"signature": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
|
|
72
|
-
"affectsGlobalScope": true
|
|
73
|
-
},
|
|
74
|
-
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
|
|
75
|
-
"version": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
|
|
76
|
-
"signature": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
|
|
77
|
-
"affectsGlobalScope": true
|
|
78
|
-
},
|
|
79
|
-
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
|
|
80
|
-
"version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
|
|
81
|
-
"signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
|
|
82
|
-
"affectsGlobalScope": true
|
|
83
|
-
},
|
|
84
|
-
"../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
|
|
85
|
-
"version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
|
|
86
|
-
"signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
|
|
87
|
-
"affectsGlobalScope": true
|
|
88
|
-
},
|
|
89
|
-
"../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
|
|
90
|
-
"version": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
|
|
91
|
-
"signature": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
|
|
92
|
-
"affectsGlobalScope": true
|
|
93
|
-
},
|
|
94
|
-
"../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
|
|
95
|
-
"version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
|
|
96
|
-
"signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
|
|
97
|
-
"affectsGlobalScope": true
|
|
98
|
-
},
|
|
99
|
-
"../../node_modules/typescript/lib/lib.es2017.object.d.ts": {
|
|
100
|
-
"version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
|
|
101
|
-
"signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
|
|
102
|
-
"affectsGlobalScope": true
|
|
103
|
-
},
|
|
104
|
-
"../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
|
|
105
|
-
"version": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
|
|
106
|
-
"signature": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
|
|
107
|
-
"affectsGlobalScope": true
|
|
108
|
-
},
|
|
109
|
-
"../../node_modules/typescript/lib/lib.es2017.string.d.ts": {
|
|
110
|
-
"version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
|
|
111
|
-
"signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
|
|
112
|
-
"affectsGlobalScope": true
|
|
113
|
-
},
|
|
114
|
-
"../../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
|
|
115
|
-
"version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
|
|
116
|
-
"signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
|
|
117
|
-
"affectsGlobalScope": true
|
|
118
|
-
},
|
|
119
|
-
"../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
|
|
120
|
-
"version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
|
|
121
|
-
"signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
|
|
122
|
-
"affectsGlobalScope": true
|
|
123
|
-
},
|
|
124
|
-
"../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
|
|
125
|
-
"version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
|
|
126
|
-
"signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
|
|
127
|
-
"affectsGlobalScope": true
|
|
128
|
-
},
|
|
129
|
-
"../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
|
|
130
|
-
"version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
|
|
131
|
-
"signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
|
|
132
|
-
"affectsGlobalScope": true
|
|
133
|
-
},
|
|
134
|
-
"../../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
|
|
135
|
-
"version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
|
|
136
|
-
"signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
|
|
137
|
-
"affectsGlobalScope": true
|
|
138
|
-
},
|
|
139
|
-
"../../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
|
|
140
|
-
"version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
|
|
141
|
-
"signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
|
|
142
|
-
"affectsGlobalScope": true
|
|
143
|
-
},
|
|
144
|
-
"../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
|
|
145
|
-
"version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
|
|
146
|
-
"signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
|
|
147
|
-
"affectsGlobalScope": true
|
|
148
|
-
},
|
|
149
|
-
"../../node_modules/typescript/lib/lib.es2019.array.d.ts": {
|
|
150
|
-
"version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
|
|
151
|
-
"signature": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
|
|
152
|
-
"affectsGlobalScope": true
|
|
153
|
-
},
|
|
154
|
-
"../../node_modules/typescript/lib/lib.es2019.object.d.ts": {
|
|
155
|
-
"version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
|
|
156
|
-
"signature": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
|
|
157
|
-
"affectsGlobalScope": true
|
|
158
|
-
},
|
|
159
|
-
"../../node_modules/typescript/lib/lib.es2019.string.d.ts": {
|
|
160
|
-
"version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
|
|
161
|
-
"signature": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
|
|
162
|
-
"affectsGlobalScope": true
|
|
163
|
-
},
|
|
164
|
-
"../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
|
|
165
|
-
"version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
|
|
166
|
-
"signature": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
|
|
167
|
-
"affectsGlobalScope": true
|
|
168
|
-
},
|
|
169
|
-
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
|
|
170
|
-
"version": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
|
|
171
|
-
"signature": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
|
|
172
|
-
"affectsGlobalScope": true
|
|
173
|
-
},
|
|
174
|
-
"../../node_modules/typescript/lib/lib.es2020.promise.d.ts": {
|
|
175
|
-
"version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
|
|
176
|
-
"signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
|
|
177
|
-
"affectsGlobalScope": true
|
|
178
|
-
},
|
|
179
|
-
"../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts": {
|
|
180
|
-
"version": "e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40",
|
|
181
|
-
"signature": "e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40",
|
|
182
|
-
"affectsGlobalScope": true
|
|
183
|
-
},
|
|
184
|
-
"../../node_modules/typescript/lib/lib.es2020.string.d.ts": {
|
|
185
|
-
"version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
|
|
186
|
-
"signature": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
|
|
187
|
-
"affectsGlobalScope": true
|
|
188
|
-
},
|
|
189
|
-
"../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": {
|
|
190
|
-
"version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
|
|
191
|
-
"signature": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
|
|
192
|
-
"affectsGlobalScope": true
|
|
193
|
-
},
|
|
194
|
-
"../../node_modules/typescript/lib/lib.es2020.intl.d.ts": {
|
|
195
|
-
"version": "31e8df2398e328077079c17ea4f1664bad0a34adf8b0608837e504e310e329a1",
|
|
196
|
-
"signature": "31e8df2398e328077079c17ea4f1664bad0a34adf8b0608837e504e310e329a1",
|
|
197
|
-
"affectsGlobalScope": true
|
|
198
|
-
},
|
|
199
|
-
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
|
|
200
|
-
"version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
|
|
201
|
-
"signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
|
|
202
|
-
"affectsGlobalScope": true
|
|
203
|
-
},
|
|
204
|
-
"../../node_modules/typescript/lib/lib.esnext.string.d.ts": {
|
|
205
|
-
"version": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
|
|
206
|
-
"signature": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
|
|
207
|
-
"affectsGlobalScope": true
|
|
208
|
-
},
|
|
209
|
-
"../../node_modules/typescript/lib/lib.esnext.promise.d.ts": {
|
|
210
|
-
"version": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
|
|
211
|
-
"signature": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
|
|
212
|
-
"affectsGlobalScope": true
|
|
213
|
-
},
|
|
214
|
-
"../../node_modules/typescript/lib/lib.esnext.weakref.d.ts": {
|
|
215
|
-
"version": "1e61418f41d404e744b6536af9f8c6f6674dd4d54c12335cd0c4f7eded69cf3f",
|
|
216
|
-
"signature": "1e61418f41d404e744b6536af9f8c6f6674dd4d54c12335cd0c4f7eded69cf3f",
|
|
217
|
-
"affectsGlobalScope": true
|
|
218
|
-
},
|
|
219
|
-
"./src/add-container.js": {
|
|
220
|
-
"version": "e83d4898e9301aab4c65c6cf683ce7c400e14722070cfe0485f0c157374d3aa4",
|
|
221
|
-
"signature": "62cdd16a60e89e0d1205c13646e8defc391931963bd0cca82c2c91fd7ee187ae",
|
|
222
|
-
"affectsGlobalScope": false
|
|
223
|
-
},
|
|
224
|
-
"../i18n/build-types/sprintf.d.ts": {
|
|
225
|
-
"version": "762bc52248d3fab9873c7af564caf622358312cb35de42a4393b71cc36e14621",
|
|
226
|
-
"signature": "762bc52248d3fab9873c7af564caf622358312cb35de42a4393b71cc36e14621",
|
|
227
|
-
"affectsGlobalScope": false
|
|
228
|
-
},
|
|
229
|
-
"../hooks/build-types/createaddhook.d.ts": {
|
|
230
|
-
"version": "d02ec79cefaf292fae64b3be5a4416e64b4e420a6429fd458fac6e1bb4c7950e",
|
|
231
|
-
"signature": "d02ec79cefaf292fae64b3be5a4416e64b4e420a6429fd458fac6e1bb4c7950e",
|
|
232
|
-
"affectsGlobalScope": false
|
|
233
|
-
},
|
|
234
|
-
"../hooks/build-types/createremovehook.d.ts": {
|
|
235
|
-
"version": "27abed653f600ea0d5c86e94181beb42824e0f3f16337e2f9e7e9e9c2c392edf",
|
|
236
|
-
"signature": "27abed653f600ea0d5c86e94181beb42824e0f3f16337e2f9e7e9e9c2c392edf",
|
|
237
|
-
"affectsGlobalScope": false
|
|
238
|
-
},
|
|
239
|
-
"../hooks/build-types/createhashook.d.ts": {
|
|
240
|
-
"version": "d7871e0e653aa7197fee88886db5678bee6d42164c1f36e4bce9421ddfa7ca49",
|
|
241
|
-
"signature": "d7871e0e653aa7197fee88886db5678bee6d42164c1f36e4bce9421ddfa7ca49",
|
|
242
|
-
"affectsGlobalScope": false
|
|
243
|
-
},
|
|
244
|
-
"../hooks/build-types/createdoinghook.d.ts": {
|
|
245
|
-
"version": "11ed10bdb3bcc99893570507eac8fece4840add97ee1d4f5a7fbf41cbfdea0d4",
|
|
246
|
-
"signature": "11ed10bdb3bcc99893570507eac8fece4840add97ee1d4f5a7fbf41cbfdea0d4",
|
|
247
|
-
"affectsGlobalScope": false
|
|
248
|
-
},
|
|
249
|
-
"../hooks/build-types/createdidhook.d.ts": {
|
|
250
|
-
"version": "429fb571d3db07d3eaa2e74d43eb4190ece3e0de832ed564aeeaf08873e598eb",
|
|
251
|
-
"signature": "429fb571d3db07d3eaa2e74d43eb4190ece3e0de832ed564aeeaf08873e598eb",
|
|
252
|
-
"affectsGlobalScope": false
|
|
253
|
-
},
|
|
254
|
-
"../hooks/build-types/index.d.ts": {
|
|
255
|
-
"version": "e1dbde0dd2cee229c90b3f3ebec3fb87089d4c872b5a55dce3a6e1f99665e978",
|
|
256
|
-
"signature": "e1dbde0dd2cee229c90b3f3ebec3fb87089d4c872b5a55dce3a6e1f99665e978",
|
|
257
|
-
"affectsGlobalScope": false
|
|
258
|
-
},
|
|
259
|
-
"../hooks/build-types/createhooks.d.ts": {
|
|
260
|
-
"version": "d3060e0810fc0d0dc009e6f086ef413d3c8aeaaf07da25c8d25fd4e181646acf",
|
|
261
|
-
"signature": "d3060e0810fc0d0dc009e6f086ef413d3c8aeaaf07da25c8d25fd4e181646acf",
|
|
262
|
-
"affectsGlobalScope": false
|
|
263
|
-
},
|
|
264
|
-
"../i18n/build-types/create-i18n.d.ts": {
|
|
265
|
-
"version": "28f3851646144f2745c0f67d962a2a8e5cf4f146fda1efd276420e761efc72ae",
|
|
266
|
-
"signature": "28f3851646144f2745c0f67d962a2a8e5cf4f146fda1efd276420e761efc72ae",
|
|
267
|
-
"affectsGlobalScope": false
|
|
268
|
-
},
|
|
269
|
-
"../i18n/build-types/default-i18n.d.ts": {
|
|
270
|
-
"version": "892d4a58891814b308cdb49a55528bac0a81a89676bd1b830cc985ea38a54095",
|
|
271
|
-
"signature": "892d4a58891814b308cdb49a55528bac0a81a89676bd1b830cc985ea38a54095",
|
|
272
|
-
"affectsGlobalScope": false
|
|
273
|
-
},
|
|
274
|
-
"../i18n/build-types/index.d.ts": {
|
|
275
|
-
"version": "f829eb39aea4487f0ff94a42c56a1a73bc5202bbdeb03f7a638e4ab3e290d017",
|
|
276
|
-
"signature": "f829eb39aea4487f0ff94a42c56a1a73bc5202bbdeb03f7a638e4ab3e290d017",
|
|
277
|
-
"affectsGlobalScope": false
|
|
278
|
-
},
|
|
279
|
-
"./src/add-intro-text.js": {
|
|
280
|
-
"version": "209429704cf5cde591683338610ff33ba2e8fc994a4db973eb37770140e0f9b7",
|
|
281
|
-
"signature": "fd060ff5e65f08df7b27d02015cf78c822a6f5fc30a9fd787afd9e390a6da86c",
|
|
282
|
-
"affectsGlobalScope": false
|
|
283
|
-
},
|
|
284
|
-
"./src/clear.js": {
|
|
285
|
-
"version": "3c383661a6c329f5dc1226e733094f5da6d3f9904a38eb20e3a0720caad8855e",
|
|
286
|
-
"signature": "5ef56ea406d5c0e968765cf22812eade7fb6fb622edfe5e62d96ee9ebe912086",
|
|
287
|
-
"affectsGlobalScope": false
|
|
288
|
-
},
|
|
289
|
-
"./src/filter-message.js": {
|
|
290
|
-
"version": "e71ba89165852926b4e0fb4d66abce9b1472b712abb8b4a20dc638ab981b93cf",
|
|
291
|
-
"signature": "ac634a34992eee5b5c252e9b2a36799653e9cb10add1b3ddd4b232fe51b549e5",
|
|
292
|
-
"affectsGlobalScope": false
|
|
293
|
-
},
|
|
294
|
-
"../dom-ready/build-types/index.d.ts": {
|
|
295
|
-
"version": "5b46c9f01924bda9c2dc4c895a774b048ec8b29644ceae39253fa1c24be16923",
|
|
296
|
-
"signature": "5b46c9f01924bda9c2dc4c895a774b048ec8b29644ceae39253fa1c24be16923",
|
|
297
|
-
"affectsGlobalScope": false
|
|
298
|
-
},
|
|
299
|
-
"./src/index.js": {
|
|
300
|
-
"version": "0c17065cf4b41e95a6a4eb653317434e2b9900aa9b199271346c0e10972e7cdd",
|
|
301
|
-
"signature": "628892c81712740099899916d35460c1e8552c7246db3b3b0cafb309735555de",
|
|
302
|
-
"affectsGlobalScope": false
|
|
303
|
-
}
|
|
304
|
-
},
|
|
305
|
-
"options": {
|
|
306
|
-
"allowJs": true,
|
|
307
|
-
"checkJs": true,
|
|
308
|
-
"allowSyntheticDefaultImports": true,
|
|
309
|
-
"jsx": 1,
|
|
310
|
-
"target": 99,
|
|
311
|
-
"module": 99,
|
|
312
|
-
"lib": [
|
|
313
|
-
"lib.dom.d.ts",
|
|
314
|
-
"lib.esnext.d.ts"
|
|
315
|
-
],
|
|
316
|
-
"declaration": true,
|
|
317
|
-
"declarationMap": true,
|
|
318
|
-
"composite": true,
|
|
319
|
-
"emitDeclarationOnly": true,
|
|
320
|
-
"isolatedModules": true,
|
|
321
|
-
"strict": true,
|
|
322
|
-
"noUnusedLocals": true,
|
|
323
|
-
"noUnusedParameters": true,
|
|
324
|
-
"noImplicitReturns": true,
|
|
325
|
-
"noFallthroughCasesInSwitch": true,
|
|
326
|
-
"importsNotUsedAsValues": 2,
|
|
327
|
-
"moduleResolution": 2,
|
|
328
|
-
"esModuleInterop": false,
|
|
329
|
-
"resolveJsonModule": true,
|
|
330
|
-
"typeRoots": [
|
|
331
|
-
"../../typings",
|
|
332
|
-
"../../node_modules/@types"
|
|
333
|
-
],
|
|
334
|
-
"types": [],
|
|
335
|
-
"rootDir": "./src",
|
|
336
|
-
"declarationDir": "./build-types",
|
|
337
|
-
"configFilePath": "./tsconfig.json"
|
|
338
|
-
},
|
|
339
|
-
"referencedMap": {
|
|
340
|
-
"./src/add-intro-text.js": [
|
|
341
|
-
"../i18n/build-types/index.d.ts"
|
|
342
|
-
],
|
|
343
|
-
"./src/index.js": [
|
|
344
|
-
"../dom-ready/build-types/index.d.ts",
|
|
345
|
-
"./src/add-container.js",
|
|
346
|
-
"./src/add-intro-text.js",
|
|
347
|
-
"./src/clear.js",
|
|
348
|
-
"./src/filter-message.js"
|
|
349
|
-
],
|
|
350
|
-
"../hooks/build-types/createaddhook.d.ts": [
|
|
351
|
-
"../hooks/build-types/index.d.ts"
|
|
352
|
-
],
|
|
353
|
-
"../hooks/build-types/createdidhook.d.ts": [
|
|
354
|
-
"../hooks/build-types/index.d.ts"
|
|
355
|
-
],
|
|
356
|
-
"../hooks/build-types/createdoinghook.d.ts": [
|
|
357
|
-
"../hooks/build-types/index.d.ts"
|
|
358
|
-
],
|
|
359
|
-
"../hooks/build-types/createhashook.d.ts": [
|
|
360
|
-
"../hooks/build-types/index.d.ts"
|
|
361
|
-
],
|
|
362
|
-
"../hooks/build-types/createhooks.d.ts": [
|
|
363
|
-
"../hooks/build-types/createaddhook.d.ts",
|
|
364
|
-
"../hooks/build-types/createdidhook.d.ts",
|
|
365
|
-
"../hooks/build-types/createdoinghook.d.ts",
|
|
366
|
-
"../hooks/build-types/createhashook.d.ts",
|
|
367
|
-
"../hooks/build-types/createremovehook.d.ts",
|
|
368
|
-
"../hooks/build-types/index.d.ts"
|
|
369
|
-
],
|
|
370
|
-
"../hooks/build-types/createremovehook.d.ts": [
|
|
371
|
-
"../hooks/build-types/index.d.ts"
|
|
372
|
-
],
|
|
373
|
-
"../hooks/build-types/index.d.ts": [
|
|
374
|
-
"../hooks/build-types/createaddhook.d.ts",
|
|
375
|
-
"../hooks/build-types/createdidhook.d.ts",
|
|
376
|
-
"../hooks/build-types/createdoinghook.d.ts",
|
|
377
|
-
"../hooks/build-types/createhashook.d.ts",
|
|
378
|
-
"../hooks/build-types/createhooks.d.ts",
|
|
379
|
-
"../hooks/build-types/createremovehook.d.ts"
|
|
380
|
-
],
|
|
381
|
-
"../i18n/build-types/create-i18n.d.ts": [
|
|
382
|
-
"../hooks/build-types/createhooks.d.ts"
|
|
383
|
-
],
|
|
384
|
-
"../i18n/build-types/default-i18n.d.ts": [
|
|
385
|
-
"../i18n/build-types/create-i18n.d.ts"
|
|
386
|
-
],
|
|
387
|
-
"../i18n/build-types/index.d.ts": [
|
|
388
|
-
"../i18n/build-types/create-i18n.d.ts",
|
|
389
|
-
"../i18n/build-types/default-i18n.d.ts",
|
|
390
|
-
"../i18n/build-types/sprintf.d.ts"
|
|
391
|
-
]
|
|
392
|
-
},
|
|
393
|
-
"exportedModulesMap": {
|
|
394
|
-
"../hooks/build-types/createaddhook.d.ts": [
|
|
395
|
-
"../hooks/build-types/index.d.ts"
|
|
396
|
-
],
|
|
397
|
-
"../hooks/build-types/createdidhook.d.ts": [
|
|
398
|
-
"../hooks/build-types/index.d.ts"
|
|
399
|
-
],
|
|
400
|
-
"../hooks/build-types/createdoinghook.d.ts": [
|
|
401
|
-
"../hooks/build-types/index.d.ts"
|
|
402
|
-
],
|
|
403
|
-
"../hooks/build-types/createhashook.d.ts": [
|
|
404
|
-
"../hooks/build-types/index.d.ts"
|
|
405
|
-
],
|
|
406
|
-
"../hooks/build-types/createhooks.d.ts": [
|
|
407
|
-
"../hooks/build-types/createaddhook.d.ts",
|
|
408
|
-
"../hooks/build-types/createdidhook.d.ts",
|
|
409
|
-
"../hooks/build-types/createdoinghook.d.ts",
|
|
410
|
-
"../hooks/build-types/createhashook.d.ts",
|
|
411
|
-
"../hooks/build-types/createremovehook.d.ts",
|
|
412
|
-
"../hooks/build-types/index.d.ts"
|
|
413
|
-
],
|
|
414
|
-
"../hooks/build-types/createremovehook.d.ts": [
|
|
415
|
-
"../hooks/build-types/index.d.ts"
|
|
416
|
-
],
|
|
417
|
-
"../hooks/build-types/index.d.ts": [
|
|
418
|
-
"../hooks/build-types/createaddhook.d.ts",
|
|
419
|
-
"../hooks/build-types/createdidhook.d.ts",
|
|
420
|
-
"../hooks/build-types/createdoinghook.d.ts",
|
|
421
|
-
"../hooks/build-types/createhashook.d.ts",
|
|
422
|
-
"../hooks/build-types/createhooks.d.ts",
|
|
423
|
-
"../hooks/build-types/createremovehook.d.ts"
|
|
424
|
-
],
|
|
425
|
-
"../i18n/build-types/create-i18n.d.ts": [
|
|
426
|
-
"../hooks/build-types/createhooks.d.ts"
|
|
427
|
-
],
|
|
428
|
-
"../i18n/build-types/default-i18n.d.ts": [
|
|
429
|
-
"../i18n/build-types/create-i18n.d.ts"
|
|
430
|
-
],
|
|
431
|
-
"../i18n/build-types/index.d.ts": [
|
|
432
|
-
"../i18n/build-types/create-i18n.d.ts",
|
|
433
|
-
"../i18n/build-types/default-i18n.d.ts",
|
|
434
|
-
"../i18n/build-types/sprintf.d.ts"
|
|
435
|
-
]
|
|
436
|
-
},
|
|
437
|
-
"semanticDiagnosticsPerFile": [
|
|
438
|
-
"../../node_modules/typescript/lib/lib.dom.d.ts",
|
|
439
|
-
"../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
|
|
440
|
-
"../../node_modules/typescript/lib/lib.es2015.core.d.ts",
|
|
441
|
-
"../../node_modules/typescript/lib/lib.es2015.d.ts",
|
|
442
|
-
"../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
|
|
443
|
-
"../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
|
|
444
|
-
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
|
|
445
|
-
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
|
|
446
|
-
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
|
|
447
|
-
"../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
|
|
448
|
-
"../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
|
|
449
|
-
"../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
|
|
450
|
-
"../../node_modules/typescript/lib/lib.es2016.d.ts",
|
|
451
|
-
"../../node_modules/typescript/lib/lib.es2017.d.ts",
|
|
452
|
-
"../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
|
|
453
|
-
"../../node_modules/typescript/lib/lib.es2017.object.d.ts",
|
|
454
|
-
"../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
|
|
455
|
-
"../../node_modules/typescript/lib/lib.es2017.string.d.ts",
|
|
456
|
-
"../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
|
|
457
|
-
"../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
|
|
458
|
-
"../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
|
|
459
|
-
"../../node_modules/typescript/lib/lib.es2018.d.ts",
|
|
460
|
-
"../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
|
|
461
|
-
"../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
|
|
462
|
-
"../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
|
|
463
|
-
"../../node_modules/typescript/lib/lib.es2019.array.d.ts",
|
|
464
|
-
"../../node_modules/typescript/lib/lib.es2019.d.ts",
|
|
465
|
-
"../../node_modules/typescript/lib/lib.es2019.object.d.ts",
|
|
466
|
-
"../../node_modules/typescript/lib/lib.es2019.string.d.ts",
|
|
467
|
-
"../../node_modules/typescript/lib/lib.es2019.symbol.d.ts",
|
|
468
|
-
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
|
|
469
|
-
"../../node_modules/typescript/lib/lib.es2020.d.ts",
|
|
470
|
-
"../../node_modules/typescript/lib/lib.es2020.intl.d.ts",
|
|
471
|
-
"../../node_modules/typescript/lib/lib.es2020.promise.d.ts",
|
|
472
|
-
"../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts",
|
|
473
|
-
"../../node_modules/typescript/lib/lib.es2020.string.d.ts",
|
|
474
|
-
"../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts",
|
|
475
|
-
"../../node_modules/typescript/lib/lib.es5.d.ts",
|
|
476
|
-
"../../node_modules/typescript/lib/lib.esnext.d.ts",
|
|
477
|
-
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
|
|
478
|
-
"../../node_modules/typescript/lib/lib.esnext.promise.d.ts",
|
|
479
|
-
"../../node_modules/typescript/lib/lib.esnext.string.d.ts",
|
|
480
|
-
"../../node_modules/typescript/lib/lib.esnext.weakref.d.ts",
|
|
481
|
-
"./src/add-container.js",
|
|
482
|
-
"./src/add-intro-text.js",
|
|
483
|
-
"./src/clear.js",
|
|
484
|
-
"./src/filter-message.js",
|
|
485
|
-
"./src/index.js",
|
|
486
|
-
"../dom-ready/build-types/index.d.ts",
|
|
487
|
-
"../hooks/build-types/createaddhook.d.ts",
|
|
488
|
-
"../hooks/build-types/createdidhook.d.ts",
|
|
489
|
-
"../hooks/build-types/createdoinghook.d.ts",
|
|
490
|
-
"../hooks/build-types/createhashook.d.ts",
|
|
491
|
-
"../hooks/build-types/createhooks.d.ts",
|
|
492
|
-
"../hooks/build-types/createremovehook.d.ts",
|
|
493
|
-
"../hooks/build-types/index.d.ts",
|
|
494
|
-
"../i18n/build-types/create-i18n.d.ts",
|
|
495
|
-
"../i18n/build-types/default-i18n.d.ts",
|
|
496
|
-
"../i18n/build-types/index.d.ts",
|
|
497
|
-
"../i18n/build-types/sprintf.d.ts"
|
|
498
|
-
]
|
|
499
|
-
},
|
|
500
|
-
"version": "4.1.3"
|
|
501
|
-
}
|
|
1
|
+
{"program":{"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.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.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.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.es2020.bigint.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.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.esnext.intl.d.ts","./src/add-container.js","../i18n/build-types/sprintf.d.ts","../hooks/build-types/createaddhook.d.ts","../hooks/build-types/createremovehook.d.ts","../hooks/build-types/createhashook.d.ts","../hooks/build-types/createdoinghook.d.ts","../hooks/build-types/createdidhook.d.ts","../hooks/build-types/index.d.ts","../hooks/build-types/createhooks.d.ts","../i18n/build-types/create-i18n.d.ts","../i18n/build-types/default-i18n.d.ts","../i18n/build-types/index.d.ts","./src/add-intro-text.js","./src/clear.js","./src/filter-message.js","../dom-ready/build-types/index.d.ts","./src/index.js"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"e83d4898e9301aab4c65c6cf683ce7c400e14722070cfe0485f0c157374d3aa4","762bc52248d3fab9873c7af564caf622358312cb35de42a4393b71cc36e14621","d02ec79cefaf292fae64b3be5a4416e64b4e420a6429fd458fac6e1bb4c7950e","27abed653f600ea0d5c86e94181beb42824e0f3f16337e2f9e7e9e9c2c392edf","d7871e0e653aa7197fee88886db5678bee6d42164c1f36e4bce9421ddfa7ca49","11ed10bdb3bcc99893570507eac8fece4840add97ee1d4f5a7fbf41cbfdea0d4","429fb571d3db07d3eaa2e74d43eb4190ece3e0de832ed564aeeaf08873e598eb","406d52bf33d618d846aa0d831ee004290567e328edcd4517bbff2937cc977abf","d3060e0810fc0d0dc009e6f086ef413d3c8aeaaf07da25c8d25fd4e181646acf","9d8f457905054b69915abac57f33e356fdcebce3a10e5be7fcfccad5da5aa934","08f7e6ffa66c66a636aecc5acbeb998215d9d09ccba0c558afb7df7e218edeaf","f829eb39aea4487f0ff94a42c56a1a73bc5202bbdeb03f7a638e4ab3e290d017","209429704cf5cde591683338610ff33ba2e8fc994a4db973eb37770140e0f9b7","3c383661a6c329f5dc1226e733094f5da6d3f9904a38eb20e3a0720caad8855e","e71ba89165852926b4e0fb4d66abce9b1472b712abb8b4a20dc638ab981b93cf","5b46c9f01924bda9c2dc4c895a774b048ec8b29644ceae39253fa1c24be16923","0c17065cf4b41e95a6a4eb653317434e2b9900aa9b199271346c0e10972e7cdd"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"importsNotUsedAsValues":2,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"rootDir":"./src","strict":true,"target":99},"fileIdsList":[[56],[45,57,58,59,60],[52],[47,48,49,50,51,52],[47,48,49,50,51,53],[52,53],[54],[46,54,55]],"referencedMap":[[57,1],[61,2],[47,3],[51,3],[50,3],[49,3],[53,4],[48,3],[52,5],[54,6],[55,7],[56,8]],"exportedModulesMap":[[57,1],[61,2],[47,3],[51,3],[50,3],[49,3],[53,4],[48,3],[52,5],[54,6],[55,7],[56,8]],"semanticDiagnosticsPerFile":[10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,45,57,58,59,61,60,47,51,50,49,53,48,52,54,55,56,46]},"version":"4.4.2"}
|