stylelint-root-colors 0.0.3 → 1.0.1

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
@@ -1,7 +1,7 @@
1
1
  # stylelint-root-colors
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/stylelint-root-colors.svg)](https://www.npmjs.com/package/stylelint-root-colors)
4
- [![test status](https://github.com/SaekiTominaga/stylelint-plugin/actions/workflows/root-colors-test.yml/badge.svg)](https://github.com/SaekiTominaga/stylelint-plugin/actions/workflows/root-colors-test.yml)
4
+ [![Workflow status](https://github.com/SaekiTominaga/stylelint-plugin/actions/workflows/root-colors.yml/badge.svg)](https://github.com/SaekiTominaga/stylelint-plugin/actions/workflows/root-colors.yml)
5
5
 
6
6
  ## Summary
7
7
 
@@ -15,7 +15,8 @@ The root element is `:root { }` or `html { }`.
15
15
  color: #000;
16
16
  }
17
17
 
18
- html, .foo {
18
+ html,
19
+ .foo {
19
20
  background-color: #fff;
20
21
  }
21
22
 
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import stylelint from 'stylelint';
2
2
  export declare const ruleName = "plugin/root-colors";
3
3
  export declare const messages: {
4
- rejected: (selector: string | number | boolean | RegExp) => string;
4
+ rejected: (selector: string) => string;
5
5
  };
6
6
  declare const _default: stylelint.Plugin;
7
7
  export default _default;
package/dist/index.js CHANGED
@@ -1,12 +1,13 @@
1
- import stylelint from 'stylelint';
1
+ import stylelint, {} from 'stylelint';
2
2
  const { createPlugin, utils } = stylelint;
3
3
  export const ruleName = 'plugin/root-colors';
4
4
  export const messages = utils.ruleMessages(ruleName, {
5
- rejected: (selector) => `\`color\` and \`background-color\` must be specified as a set within selector \`${String(selector)}\``,
5
+ rejected: (selector) => `\`color\` and \`background-color\` must be specified as a set within selector \`${selector}\``,
6
6
  });
7
7
  const meta = {
8
8
  url: 'https://github.com/SaekiTominaga/stylelint-plugin/blob/main/packages/root-colors/README.md',
9
9
  };
10
+ const DEFAULT_ROOT_SELECTORS = [':root', 'html'];
10
11
  const ruleFunction = (primary, secondaryOptions) => (root, result) => {
11
12
  const validOptions = utils.validateOptions(result, ruleName, {
12
13
  actual: primary,
@@ -21,13 +22,13 @@ const ruleFunction = (primary, secondaryOptions) => (root, result) => {
21
22
  if (!validOptions) {
22
23
  return;
23
24
  }
24
- let rootSelectors = [':root', 'html'];
25
+ let rootSelectors = DEFAULT_ROOT_SELECTORS;
25
26
  if (secondaryOptions !== undefined) {
26
- if (Array.isArray(secondaryOptions['root'])) {
27
- rootSelectors = secondaryOptions['root'];
27
+ if (Array.isArray(secondaryOptions.root)) {
28
+ rootSelectors = secondaryOptions.root;
28
29
  }
29
30
  else {
30
- rootSelectors = [secondaryOptions['root']];
31
+ rootSelectors = [secondaryOptions.root];
31
32
  }
32
33
  }
33
34
  root.walkRules((ruleNode) => {
@@ -58,8 +59,8 @@ const ruleFunction = (primary, secondaryOptions) => (root, result) => {
58
59
  return;
59
60
  }
60
61
  utils.report({
61
- result,
62
- ruleName,
62
+ result: result,
63
+ ruleName: ruleName,
63
64
  message: messages.rejected(selector),
64
65
  node: ruleNode,
65
66
  word: selector,
package/package.json CHANGED
@@ -1,40 +1,43 @@
1
- {
2
- "name": "stylelint-root-colors",
3
- "version": "0.0.3",
4
- "description": "`color` and `background-color` must be specified as a set in the root element",
5
- "keywords": [
6
- "stylelint-plugin",
7
- "accessibility",
8
- "a11y"
9
- ],
10
- "homepage": "https://github.com/SaekiTominaga/stylelint-plugin#readme",
11
- "bugs": {
12
- "url": "https://github.com/SaekiTominaga/stylelint-plugin/issues"
13
- },
14
- "license": "MIT",
15
- "author": "Saeki Tominaga",
16
- "files": [
17
- "dist"
18
- ],
19
- "type": "module",
20
- "main": "dist/index.js",
21
- "module": "dist/index.js",
22
- "types": "dist/index.d.ts",
23
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/SaekiTominaga/stylelint-plugin.git"
26
- },
27
- "scripts": {
28
- "build": "tsc",
29
- "watch": "tsc -w",
30
- "lint": "eslint src/*.ts",
31
- "pretest": "npm run build",
32
- "test": "node dist/index.test.js"
33
- },
34
- "peerDependencies": {
35
- "stylelint": "^16.0.0"
36
- },
37
- "publishConfig": {
38
- "access": "public"
39
- }
40
- }
1
+ {
2
+ "name": "stylelint-root-colors",
3
+ "version": "1.0.1",
4
+ "description": "`color` and `background-color` must be specified as a set in the root element",
5
+ "keywords": [
6
+ "stylelint-plugin",
7
+ "accessibility",
8
+ "a11y"
9
+ ],
10
+ "homepage": "https://github.com/SaekiTominaga/stylelint-plugin#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/SaekiTominaga/stylelint-plugin/issues"
13
+ },
14
+ "license": "MIT",
15
+ "author": "Saeki Tominaga",
16
+ "files": [
17
+ "dist/**/*.d.ts",
18
+ "!dist/**/*.test.d.ts",
19
+ "dist/**/*.js",
20
+ "!dist/**/*.test.js"
21
+ ],
22
+ "type": "module",
23
+ "main": "dist/index.js",
24
+ "module": "dist/index.js",
25
+ "types": "dist/index.d.ts",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/SaekiTominaga/stylelint-plugin.git"
29
+ },
30
+ "scripts": {
31
+ "build": "tsc",
32
+ "watch": "tsc -w",
33
+ "lint": "eslint src/*.ts",
34
+ "pretest": "npm run build",
35
+ "test": "node dist/index.test.js"
36
+ },
37
+ "peerDependencies": {
38
+ "stylelint": "^16.0.0"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ }
43
+ }
@@ -1 +0,0 @@
1
- export {};
@@ -1,240 +0,0 @@
1
- import { testRule } from 'stylelint-test-rule-node';
2
- import plugin, { ruleName, messages } from './index.js';
3
- testRule({
4
- plugins: [plugin],
5
- ruleName: ruleName,
6
- config: true,
7
- accept: [
8
- {
9
- code: ':root { background-color: #000; color: #000 }',
10
- },
11
- {
12
- code: ':root { color: #000; background: url(foo) #000 repeat }',
13
- },
14
- {
15
- code: ':root {}',
16
- },
17
- {
18
- code: 'html { color: #000; background-color: #000 }',
19
- },
20
- {
21
- code: 'html { background: url(foo) #000 repeat; color: #000 }',
22
- },
23
- {
24
- code: 'html {}',
25
- },
26
- {
27
- code: '.foo { color: #000 }',
28
- },
29
- {
30
- code: 'html, :root, .foo {}',
31
- },
32
- ],
33
- reject: [
34
- {
35
- code: 'html { background-color: #000 }',
36
- message: messages.rejected('html'),
37
- line: 1,
38
- column: 1,
39
- endLine: 1,
40
- endColumn: 5,
41
- },
42
- {
43
- code: 'html { background: url(foo) #000 repeat }',
44
- message: messages.rejected('html'),
45
- line: 1,
46
- column: 1,
47
- endLine: 1,
48
- endColumn: 5,
49
- },
50
- {
51
- code: 'html { color: #000 }',
52
- message: messages.rejected('html'),
53
- line: 1,
54
- column: 1,
55
- endLine: 1,
56
- endColumn: 5,
57
- },
58
- {
59
- code: ':root { background-color: #000 }',
60
- message: messages.rejected(':root'),
61
- line: 1,
62
- column: 1,
63
- endLine: 1,
64
- endColumn: 6,
65
- },
66
- {
67
- code: ':root { background: url(foo) #000 repeat }',
68
- message: messages.rejected(':root'),
69
- line: 1,
70
- column: 1,
71
- endLine: 1,
72
- endColumn: 6,
73
- },
74
- {
75
- code: ':root { color: #000 }',
76
- message: messages.rejected(':root'),
77
- line: 1,
78
- column: 1,
79
- endLine: 1,
80
- endColumn: 6,
81
- },
82
- {
83
- code: 'html, :root, .foo { background-color: #000 }',
84
- message: messages.rejected('html, :root, .foo'),
85
- line: 1,
86
- column: 1,
87
- endLine: 1,
88
- endColumn: 18,
89
- },
90
- ],
91
- });
92
- testRule({
93
- plugins: [plugin],
94
- ruleName: ruleName,
95
- config: [
96
- true,
97
- {
98
- root: '.root',
99
- },
100
- ],
101
- accept: [
102
- {
103
- code: '.root { background-color: #000; color: #000 }',
104
- },
105
- {
106
- code: '.root { color: #000; background: url(foo) #000 repeat }',
107
- },
108
- {
109
- code: '.root {}',
110
- },
111
- {
112
- code: ':root { color: #000 }',
113
- },
114
- ],
115
- reject: [
116
- {
117
- code: '.root { background-color: #000 }',
118
- message: messages.rejected('.root'),
119
- line: 1,
120
- column: 1,
121
- endLine: 1,
122
- endColumn: 6,
123
- },
124
- {
125
- code: '.root { background: url(foo) #000 repeat }',
126
- message: messages.rejected('.root'),
127
- line: 1,
128
- column: 1,
129
- endLine: 1,
130
- endColumn: 6,
131
- },
132
- {
133
- code: '.root { color: #000 }',
134
- message: messages.rejected('.root'),
135
- line: 1,
136
- column: 1,
137
- endLine: 1,
138
- endColumn: 6,
139
- },
140
- {
141
- code: '.root, .foo { background-color: #000 }',
142
- message: messages.rejected('.root, .foo'),
143
- line: 1,
144
- column: 1,
145
- endLine: 1,
146
- endColumn: 12,
147
- },
148
- ],
149
- });
150
- testRule({
151
- plugins: [plugin],
152
- ruleName: ruleName,
153
- config: [
154
- true,
155
- {
156
- root: ['#root', '[element=root]'],
157
- },
158
- ],
159
- accept: [
160
- {
161
- code: '#root { background-color: #000; color: #000 }',
162
- },
163
- {
164
- code: '#root { color: #000; background: url(foo) #000 repeat }',
165
- },
166
- {
167
- code: '#root {}',
168
- },
169
- {
170
- code: '[element=root] { background-color: #000; color: #000 }',
171
- },
172
- {
173
- code: '[element=root] { color: #000; background: url(foo) #000 repeat }',
174
- },
175
- {
176
- code: '[element=root] {}',
177
- },
178
- {
179
- code: ':root { color: #000 }',
180
- },
181
- ],
182
- reject: [
183
- {
184
- code: '#root { background-color: #000 }',
185
- message: messages.rejected('#root'),
186
- line: 1,
187
- column: 1,
188
- endLine: 1,
189
- endColumn: 6,
190
- },
191
- {
192
- code: '#root { background: url(foo) #000 repeat }',
193
- message: messages.rejected('#root'),
194
- line: 1,
195
- column: 1,
196
- endLine: 1,
197
- endColumn: 6,
198
- },
199
- {
200
- code: '#root { color: #000 }',
201
- message: messages.rejected('#root'),
202
- line: 1,
203
- column: 1,
204
- endLine: 1,
205
- endColumn: 6,
206
- },
207
- {
208
- code: '[element=root] { background-color: #000 }',
209
- message: messages.rejected('[element=root]'),
210
- line: 1,
211
- column: 1,
212
- endLine: 1,
213
- endColumn: 15,
214
- },
215
- {
216
- code: '[element=root] { background: url(foo) #000 repeat }',
217
- message: messages.rejected('[element=root]'),
218
- line: 1,
219
- column: 1,
220
- endLine: 1,
221
- endColumn: 15,
222
- },
223
- {
224
- code: '[element=root] { color: #000 }',
225
- message: messages.rejected('[element=root]'),
226
- line: 1,
227
- column: 1,
228
- endLine: 1,
229
- endColumn: 15,
230
- },
231
- {
232
- code: '[element=root], [element=foo] { background-color: #000 }',
233
- message: messages.rejected('[element=root], [element=foo]'),
234
- line: 1,
235
- column: 1,
236
- endLine: 1,
237
- endColumn: 30,
238
- },
239
- ],
240
- });
@@ -1 +0,0 @@
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.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.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.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.sharedmemory.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.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.es2022.full.d.ts","../../../node_modules/source-map-js/source-map.d.ts","../../../node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/postcss/lib/input.d.ts","../../../node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/postcss/lib/declaration.d.ts","../../../node_modules/postcss/lib/root.d.ts","../../../node_modules/postcss/lib/warning.d.ts","../../../node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/postcss/lib/processor.d.ts","../../../node_modules/postcss/lib/result.d.ts","../../../node_modules/postcss/lib/document.d.ts","../../../node_modules/postcss/lib/rule.d.ts","../../../node_modules/postcss/lib/node.d.ts","../../../node_modules/postcss/lib/comment.d.ts","../../../node_modules/postcss/lib/container.d.ts","../../../node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/postcss/lib/list.d.ts","../../../node_modules/postcss/lib/postcss.d.ts","../../../node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/fast-glob/out/types/index.d.ts","../../../node_modules/fast-glob/out/settings.d.ts","../../../node_modules/fast-glob/out/managers/tasks.d.ts","../../../node_modules/fast-glob/out/index.d.ts","../../../node_modules/globby/index.d.ts","../../../node_modules/cosmiconfig/dist/types.d.ts","../../../node_modules/cosmiconfig/dist/defaults.d.ts","../../../node_modules/cosmiconfig/dist/index.d.ts","../../../node_modules/stylelint/types/stylelint/index.d.ts","../../../node_modules/stylelint-test-rule-node/lib/index.d.ts","../src/index.ts","../src/index.test.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/json5/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","18c04c22baee54d13b505fa6e8bcd4223f8ba32beee80ec70e6cac972d1cc9a6","5e92a2e8ba5cbcdfd9e51428f94f7bd0ab6e45c9805b1c9552b64abaffad3ce3","44fe135be91bc8edc495350f79cd7a2e5a8b7a7108b10b2599a321b9248657dc","1d51250438f2071d2803053d9aec7973ef22dfffd80685a9ec5fb3fa082f4347","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","c7a38c1ef8d6ae4bf252be67bd9a8b012b2cdea65bd6225a3d1a726c4f0d52b6","e773630f8772a06e82d97046fc92da59ada8414c61689894fff0155dd08f102c","edf7cf322a3f3e6ebca77217a96ed4480f5a7d8d0084f8b82f1c281c92780f3a","e97321edbef59b6f68839bcdfd5ae1949fe80d554d2546e35484a8d044a04444","96aed8ec4d342ec6ac69f0dcdfb064fd17b10cb13825580451c2cebbd556e965","106e607866d6c3e9a497a696ac949c3e2ec46b6e7dda35aabe76100bf740833b","28ffc4e76ad54f4b34933d78ff3f95b763accf074e8630a6d926f3fd5bbd8908","304af95fcace2300674c969700b39bc0ee05be536880daa844c64dc8f90ef482","3d65182eff7bbb16de1a69e17651c51083f740af11a1a92359be6dab939e8bcf","670ddaf1f1b881abaa1cc28236430d86b691affbeaefd66b3ee1db31fdfb8dba","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","d406b797d7b2aff9f8bd6c023acfaa5a5fc415bfbf01975e23d415d3f54857af","7d71b2d1a537fe41760a16441cd95d98fcb59ddf9c714aba2fecba961ab253b6","a9bd8a2bbd03a72054cbdf0cd2a77fabea4e3ae591dd02b8f58bda0c34e50c1c","386cc88a3bdee8bc651ead59f8afc9dc5729fc933549bbd217409eabad05ba3e","41c78f187749098f9b8e8982839a010b6bf00dacc654d759b9c169127bcda034","f38d98ceeaf29fe3f808561016e5a1042fa02e32f316d37fde7736890a5f2cd7","ab5dd9c5bb5c727bdb76f75816917710885bfe1af821dafb9b7ddf85a5cb89bc","3b3104f8f4995ad8686d04cad11bfcea3ddb61c0833f999a5283dd5410e517a0","bd1b085bdf55e5180001f1290204c236892fb1d7aedae6793af7af511de59389","5d104f524ded4d152b026fc0f2fce03d0b840d89e677b760e2d92a636d5955d6",{"version":"6aaa364cf4536118d1cdca5ecf01445e66b9f29436ff264acd1dea710898681a","signature":"4f14d39abb1264de1b62481f8cba57040d7b7b30e01098d314e0592ee234005d"},{"version":"c1f2f0017d32ffdb58f96e54a812830b2d47fd611fb8697c4435129054225a5e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","7852500a7dc3f9cb6b73d619f6e0249119211ea662fd5e16c59ee5aba3deeb80","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538"],"root":[109,110],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":false,"declaration":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":7,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":9},"fileIdsList":[[87,88],[88,89,90,91],[88,90],[87,89],[83],[83,84,85,86],[83,85],[84],[92,93,94,97],[93,94,96],[92,93,94,95],[94],[92,93],[92],[111,112,113],[104],[104,105],[99,100,101],[99,100],[99],[98],[102],[79],[77,79],[68,76,77,78,80],[66],[69,74,79,82],[65,82],[69,70,73,74,75,82],[69,70,71,73,74,82],[66,67,68,69,70,74,75,76,78,79,80,82],[64,66,67,68,69,70,71,73,74,75,76,77,78,79,80,81],[64,82],[69,71,72,74,75,82],[73,82],[74,75,79,82],[67,77],[64],[107],[82,103,106],[108,109]],"referencedMap":[[89,1],[92,2],[91,3],[90,4],[84,5],[87,6],[86,7],[85,8],[98,9],[97,10],[96,11],[95,12],[94,13],[93,14],[114,15],[105,16],[106,17],[102,18],[101,19],[100,20],[99,21],[103,22],[80,23],[78,24],[79,25],[67,26],[68,24],[75,27],[66,28],[71,29],[72,30],[77,31],[82,32],[65,33],[73,34],[74,35],[69,36],[76,23],[70,37],[64,38],[108,39],[107,40],[110,41],[109,39]],"exportedModulesMap":[[89,1],[92,2],[91,3],[90,4],[84,5],[87,6],[86,7],[85,8],[98,9],[97,10],[96,11],[95,12],[94,13],[93,14],[114,15],[105,16],[106,17],[102,18],[101,19],[100,20],[99,21],[103,22],[80,23],[78,24],[79,25],[67,26],[68,24],[75,27],[66,28],[71,29],[72,30],[77,31],[82,32],[65,33],[73,34],[74,35],[69,36],[76,23],[70,37],[64,38],[108,39],[107,40],[109,39]],"semanticDiagnosticsPerFile":[89,92,91,90,88,84,87,86,85,83,98,97,96,95,94,93,111,114,112,113,115,105,106,104,102,101,100,99,103,80,78,79,67,68,75,66,71,81,72,77,82,65,73,74,69,76,70,64,108,107,61,62,12,10,11,16,15,2,17,18,19,20,21,22,23,24,3,25,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,63,56,57,60,58,59,1,14,13,110,109]},"version":"5.4.5"}