@mmb-digital/design-system-web 0.1.6 → 0.1.8
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/package.json +1 -1
- package/.babelrc.json +0 -16
- package/.eslintrc.js +0 -165
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/design-system-web_2023-02-07.iml +0 -8
- package/.idea/inspectionProfiles/Project_Default.xml +0 -7
- package/.idea/modules.xml +0 -8
- package/.idea/php.xml +0 -19
- package/.idea/prettier.xml +0 -6
- package/.idea/vcs.xml +0 -6
- package/.prettierrc.js +0 -15
- package/jest.config.ts +0 -197
- package/rollup.config.js +0 -39
- package/stylelint.config.js +0 -15
- package/tsconfig.json +0 -28
- package/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
package/.babelrc.json
DELETED
package/.eslintrc.js
DELETED
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
settings: {
|
|
3
|
-
react: {
|
|
4
|
-
version: 'detect',
|
|
5
|
-
},
|
|
6
|
-
},
|
|
7
|
-
extends: [
|
|
8
|
-
'plugin:@typescript-eslint/recommended-type-checked',
|
|
9
|
-
'plugin:@typescript-eslint/stylistic-type-checked',
|
|
10
|
-
'plugin:storybook/recommended',
|
|
11
|
-
'eslint:recommended',
|
|
12
|
-
'plugin:react/recommended',
|
|
13
|
-
'plugin:react-hooks/recommended',
|
|
14
|
-
],
|
|
15
|
-
plugins: ['typescript-sort-keys', '@typescript-eslint', 'unicorn', 'sort-destructure-keys', 'import', 'react-hooks'],
|
|
16
|
-
parser: '@typescript-eslint/parser',
|
|
17
|
-
parserOptions: {
|
|
18
|
-
project: ['./tsconfig.json'],
|
|
19
|
-
// project: true,
|
|
20
|
-
tsconfigRootDir: __dirname,
|
|
21
|
-
},
|
|
22
|
-
root: true,
|
|
23
|
-
env: {
|
|
24
|
-
jest: true,
|
|
25
|
-
browser: true,
|
|
26
|
-
es2023: true,
|
|
27
|
-
},
|
|
28
|
-
rules: {
|
|
29
|
-
'typescript-sort-keys/interface': 'error',
|
|
30
|
-
'typescript-sort-keys/string-enum': 'error',
|
|
31
|
-
'react/jsx-boolean-value': ['error', 'always'],
|
|
32
|
-
'@typescript-eslint/strict-boolean-expressions': ['error', {}],
|
|
33
|
-
'@typescript-eslint/no-empty-interface': 0,
|
|
34
|
-
'@typescript-eslint/ban-ts-comment': 0,
|
|
35
|
-
'func-style': ['error', 'expression'],
|
|
36
|
-
'prefer-arrow-callback': 'error',
|
|
37
|
-
'no-new-object': 'error',
|
|
38
|
-
'no-var': 'error',
|
|
39
|
-
'no-array-constructor': 'error',
|
|
40
|
-
'default-case': 'error',
|
|
41
|
-
'max-classes-per-file': 1,
|
|
42
|
-
'no-else-return': 'error',
|
|
43
|
-
'prefer-template': 'error',
|
|
44
|
-
'default-case-last': 'error',
|
|
45
|
-
'no-useless-rename': [
|
|
46
|
-
'error',
|
|
47
|
-
{
|
|
48
|
-
ignoreDestructuring: false,
|
|
49
|
-
ignoreImport: false,
|
|
50
|
-
ignoreExport: false,
|
|
51
|
-
},
|
|
52
|
-
],
|
|
53
|
-
'import/newline-after-import': [
|
|
54
|
-
'error',
|
|
55
|
-
{
|
|
56
|
-
count: 1,
|
|
57
|
-
},
|
|
58
|
-
],
|
|
59
|
-
'import/no-cycle': 'error',
|
|
60
|
-
'object-shorthand': ['error', 'never'],
|
|
61
|
-
'unicorn/throw-new-error': 'error',
|
|
62
|
-
'unicorn/prefer-number-properties': 'error',
|
|
63
|
-
'unicorn/prefer-array-index-of': 'error',
|
|
64
|
-
'unicorn/prefer-array-some': 'error',
|
|
65
|
-
'unicorn/prefer-array-find': 'error',
|
|
66
|
-
'unicorn/no-nested-ternary': 'error',
|
|
67
|
-
'unicorn/no-new-array': 'error',
|
|
68
|
-
'unicorn/prefer-includes': 'error',
|
|
69
|
-
'unicorn/error-message': 'error',
|
|
70
|
-
'unicorn/no-zero-fractions': 'error',
|
|
71
|
-
'unicorn/filename-case': [
|
|
72
|
-
'error',
|
|
73
|
-
{
|
|
74
|
-
cases: {
|
|
75
|
-
camelCase: true,
|
|
76
|
-
},
|
|
77
|
-
ignore: ['not-found.tsx'],
|
|
78
|
-
},
|
|
79
|
-
],
|
|
80
|
-
'@typescript-eslint/naming-convention': [
|
|
81
|
-
'error',
|
|
82
|
-
{
|
|
83
|
-
selector: 'variableLike',
|
|
84
|
-
format: ['camelCase'],
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
selector: 'function',
|
|
88
|
-
format: ['camelCase'],
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
selector: 'variable',
|
|
92
|
-
format: ['camelCase', 'PascalCase'],
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
selector: 'parameter',
|
|
96
|
-
format: ['camelCase'],
|
|
97
|
-
leadingUnderscore: 'forbid',
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
selector: 'typeLike',
|
|
101
|
-
format: ['PascalCase'],
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
selector: 'objectLiteralProperty',
|
|
105
|
-
format: ['camelCase'],
|
|
106
|
-
filter: {
|
|
107
|
-
regex: '^(?!Content-Type|Cache-Control|Channel|__html).*$',
|
|
108
|
-
match: true,
|
|
109
|
-
},
|
|
110
|
-
},
|
|
111
|
-
],
|
|
112
|
-
'@typescript-eslint/array-type': 'error',
|
|
113
|
-
'@typescript-eslint/prefer-reduce-type-parameter': 'error',
|
|
114
|
-
'@typescript-eslint/prefer-string-starts-ends-with': 'error',
|
|
115
|
-
'react/jsx-fragments': ['error', 'syntax'],
|
|
116
|
-
'@typescript-eslint/sort-type-constituents': 'error',
|
|
117
|
-
'react/jsx-sort-props': [
|
|
118
|
-
'error',
|
|
119
|
-
{
|
|
120
|
-
callbacksLast: true,
|
|
121
|
-
shorthandFirst: false,
|
|
122
|
-
shorthandLast: false,
|
|
123
|
-
ignoreCase: true,
|
|
124
|
-
noSortAlphabetically: false,
|
|
125
|
-
reservedFirst: ['key'],
|
|
126
|
-
},
|
|
127
|
-
],
|
|
128
|
-
'@typescript-eslint/no-misused-promises': [
|
|
129
|
-
'error',
|
|
130
|
-
{
|
|
131
|
-
checksVoidReturn: false,
|
|
132
|
-
},
|
|
133
|
-
],
|
|
134
|
-
'sort-destructure-keys/sort-destructure-keys': [
|
|
135
|
-
2,
|
|
136
|
-
{
|
|
137
|
-
caseSensitive: false,
|
|
138
|
-
},
|
|
139
|
-
],
|
|
140
|
-
'unicorn/prefer-type-error': 'error',
|
|
141
|
-
'unicorn/no-typeof-undefined': 'error',
|
|
142
|
-
'unicorn/no-useless-spread': 'error',
|
|
143
|
-
'unicorn/number-literal-case': 'error',
|
|
144
|
-
'unicorn/numeric-separators-style': 'error',
|
|
145
|
-
'unicorn/no-array-push-push': 'error',
|
|
146
|
-
'unicorn/prefer-object-from-entries': 'error',
|
|
147
|
-
'@typescript-eslint/prefer-nullish-coalescing': 0,
|
|
148
|
-
'@typescript-eslint/no-mixed-enums': 'error',
|
|
149
|
-
'@typescript-eslint/no-floating-promises': 'error',
|
|
150
|
-
'@typescript-eslint/no-unnecessary-condition': 'error',
|
|
151
|
-
'@typescript-eslint/no-require-imports': 'error',
|
|
152
|
-
'padding-line-between-statements': 'off',
|
|
153
|
-
'@typescript-eslint/padding-line-between-statements': [
|
|
154
|
-
'error',
|
|
155
|
-
{
|
|
156
|
-
blankLine: 'always',
|
|
157
|
-
prev: '*',
|
|
158
|
-
next: ['interface', 'type', 'return'],
|
|
159
|
-
},
|
|
160
|
-
],
|
|
161
|
-
complexity: ['error', 10],
|
|
162
|
-
'react/no-unknown-property': ['error', { ignore: ['css'] }],
|
|
163
|
-
'no-mixed-spaces-and-tabs': 0,
|
|
164
|
-
},
|
|
165
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
</module>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
|
2
|
-
<profile version="1.0">
|
|
3
|
-
<option name="myName" value="Project Default" />
|
|
4
|
-
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
5
|
-
<inspection_tool class="Stylelint" enabled="true" level="ERROR" enabled_by_default="true" />
|
|
6
|
-
</profile>
|
|
7
|
-
</component>
|
package/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/design-system-web_2023-02-07.iml" filepath="$PROJECT_DIR$/.idea/design-system-web_2023-02-07.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|
package/.idea/php.xml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="MessDetectorOptionsConfiguration">
|
|
4
|
-
<option name="transferred" value="true" />
|
|
5
|
-
</component>
|
|
6
|
-
<component name="PHPCSFixerOptionsConfiguration">
|
|
7
|
-
<option name="transferred" value="true" />
|
|
8
|
-
</component>
|
|
9
|
-
<component name="PHPCodeSnifferOptionsConfiguration">
|
|
10
|
-
<option name="highlightLevel" value="WARNING" />
|
|
11
|
-
<option name="transferred" value="true" />
|
|
12
|
-
</component>
|
|
13
|
-
<component name="PhpStanOptionsConfiguration">
|
|
14
|
-
<option name="transferred" value="true" />
|
|
15
|
-
</component>
|
|
16
|
-
<component name="PsalmOptionsConfiguration">
|
|
17
|
-
<option name="transferred" value="true" />
|
|
18
|
-
</component>
|
|
19
|
-
</project>
|
package/.idea/prettier.xml
DELETED
package/.idea/vcs.xml
DELETED
package/.prettierrc.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
arrowParens: 'always',
|
|
3
|
-
bracketSpacing: true,
|
|
4
|
-
bracketSameLine: false,
|
|
5
|
-
jsxSingleQuote: false,
|
|
6
|
-
printWidth: 160,
|
|
7
|
-
quoteProps: 'as-needed',
|
|
8
|
-
singleQuote: true,
|
|
9
|
-
trailingComma: 'all',
|
|
10
|
-
parser: 'typescript',
|
|
11
|
-
proseWrap: 'preserve',
|
|
12
|
-
endOfLine: 'auto',
|
|
13
|
-
singleAttributePerLine: true,
|
|
14
|
-
useTabs: true,
|
|
15
|
-
};
|
package/jest.config.ts
DELETED
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* For a detailed explanation regarding each configuration property, visit:
|
|
3
|
-
* https://jestjs.io/docs/configuration
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import type { Config } from 'jest';
|
|
7
|
-
|
|
8
|
-
const config: Config = {
|
|
9
|
-
// All imported modules in your tests should be mocked automatically
|
|
10
|
-
// automock: false,
|
|
11
|
-
|
|
12
|
-
// Stop running tests after `n` failures
|
|
13
|
-
// bail: 0,
|
|
14
|
-
|
|
15
|
-
// The directory where Jest should store its cached dependency information
|
|
16
|
-
// cacheDirectory: "C:\\Users\\543832212\\AppData\\Local\\Temp\\jest",
|
|
17
|
-
|
|
18
|
-
// Automatically clear mock calls, instances, contexts and results before every test
|
|
19
|
-
// clearMocks: false,
|
|
20
|
-
|
|
21
|
-
// Indicates whether the coverage information should be collected while executing the test
|
|
22
|
-
// collectCoverage: false,
|
|
23
|
-
|
|
24
|
-
// An array of glob patterns indicating a set of files for which coverage information should be collected
|
|
25
|
-
// collectCoverageFrom: undefined,
|
|
26
|
-
|
|
27
|
-
// The directory where Jest should output its coverage files
|
|
28
|
-
// coverageDirectory: undefined,
|
|
29
|
-
|
|
30
|
-
// An array of regexp pattern strings used to skip coverage collection
|
|
31
|
-
// coveragePathIgnorePatterns: [
|
|
32
|
-
// "\\\\node_modules\\\\"
|
|
33
|
-
// ],
|
|
34
|
-
|
|
35
|
-
// Indicates which provider should be used to instrument code for coverage
|
|
36
|
-
// coverageProvider: "babel",
|
|
37
|
-
|
|
38
|
-
// A list of reporter names that Jest uses when writing coverage reports
|
|
39
|
-
// coverageReporters: [
|
|
40
|
-
// "json",
|
|
41
|
-
// "text",
|
|
42
|
-
// "lcov",
|
|
43
|
-
// "clover"
|
|
44
|
-
// ],
|
|
45
|
-
|
|
46
|
-
// An object that configures minimum threshold enforcement for coverage results
|
|
47
|
-
// coverageThreshold: undefined,
|
|
48
|
-
|
|
49
|
-
// A path to a custom dependency extractor
|
|
50
|
-
// dependencyExtractor: undefined,
|
|
51
|
-
|
|
52
|
-
// Make calling deprecated APIs throw helpful error messages
|
|
53
|
-
// errorOnDeprecated: false,
|
|
54
|
-
|
|
55
|
-
// The default configuration for fake timers
|
|
56
|
-
// fakeTimers: {
|
|
57
|
-
// "enableGlobally": false
|
|
58
|
-
// },
|
|
59
|
-
|
|
60
|
-
// Force coverage collection from ignored files using an array of glob patterns
|
|
61
|
-
// forceCoverageMatch: [],
|
|
62
|
-
|
|
63
|
-
// A path to a module which exports an async function that is triggered once before all test suites
|
|
64
|
-
// globalSetup: undefined,
|
|
65
|
-
|
|
66
|
-
// A path to a module which exports an async function that is triggered once after all test suites
|
|
67
|
-
// globalTeardown: undefined,
|
|
68
|
-
|
|
69
|
-
// A set of global variables that need to be available in all test environments
|
|
70
|
-
// globals: {},
|
|
71
|
-
|
|
72
|
-
// The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
|
|
73
|
-
// maxWorkers: "50%",
|
|
74
|
-
|
|
75
|
-
// An array of directory names to be searched recursively up from the requiring module's location
|
|
76
|
-
moduleDirectories: ['node_modules', '<rootDir>/src'],
|
|
77
|
-
|
|
78
|
-
// An array of file extensions your modules use
|
|
79
|
-
// moduleFileExtensions: [
|
|
80
|
-
// "js",
|
|
81
|
-
// "mjs",
|
|
82
|
-
// "cjs",
|
|
83
|
-
// "jsx",
|
|
84
|
-
// "ts",
|
|
85
|
-
// "tsx",
|
|
86
|
-
// "json",
|
|
87
|
-
// "node"
|
|
88
|
-
// ],
|
|
89
|
-
|
|
90
|
-
// A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
|
|
91
|
-
moduleNameMapper: {
|
|
92
|
-
'^@/(.*)$': '<rootDir>/src/$1',
|
|
93
|
-
},
|
|
94
|
-
|
|
95
|
-
// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
|
|
96
|
-
// modulePathIgnorePatterns: [],
|
|
97
|
-
|
|
98
|
-
// Activates notifications for test results
|
|
99
|
-
// notify: false,
|
|
100
|
-
|
|
101
|
-
// An enum that specifies notification mode. Requires { notify: true }
|
|
102
|
-
// notifyMode: "failure-change",
|
|
103
|
-
|
|
104
|
-
// A preset that is used as a base for Jest's configuration
|
|
105
|
-
// preset: undefined,
|
|
106
|
-
|
|
107
|
-
// Run tests from one or more projects
|
|
108
|
-
// projects: undefined,
|
|
109
|
-
|
|
110
|
-
// Use this configuration option to add custom reporters to Jest
|
|
111
|
-
// reporters: undefined,
|
|
112
|
-
|
|
113
|
-
// Automatically reset mock state before every test
|
|
114
|
-
// resetMocks: false,
|
|
115
|
-
|
|
116
|
-
// Reset the module registry before running each individual test
|
|
117
|
-
// resetModules: false,
|
|
118
|
-
|
|
119
|
-
// A path to a custom resolver
|
|
120
|
-
// resolver: undefined,
|
|
121
|
-
|
|
122
|
-
// Automatically restore mock state and implementation before every test
|
|
123
|
-
// restoreMocks: false,
|
|
124
|
-
|
|
125
|
-
// The root directory that Jest should scan for tests and modules within
|
|
126
|
-
// rootDir: undefined,
|
|
127
|
-
|
|
128
|
-
// A list of paths to directories that Jest should use to search for files in
|
|
129
|
-
roots: ['<rootDir>/src'],
|
|
130
|
-
|
|
131
|
-
// Allows you to use a custom runner instead of Jest's default test runner
|
|
132
|
-
// runner: "jest-runner",
|
|
133
|
-
|
|
134
|
-
// The paths to modules that run some code to configure or set up the testing environment before each test
|
|
135
|
-
// setupFiles: [],
|
|
136
|
-
|
|
137
|
-
// A list of paths to modules that run some code to configure or set up the testing framework before each test
|
|
138
|
-
// setupFilesAfterEnv: [],
|
|
139
|
-
|
|
140
|
-
// The number of seconds after which a test is considered as slow and reported as such in the results.
|
|
141
|
-
// slowTestThreshold: 5,
|
|
142
|
-
|
|
143
|
-
// A list of paths to snapshot serializer modules Jest should use for snapshot testing
|
|
144
|
-
// snapshotSerializers: [],
|
|
145
|
-
|
|
146
|
-
// The test environment that will be used for testing
|
|
147
|
-
testEnvironment: 'jsdom',
|
|
148
|
-
|
|
149
|
-
// Options that will be passed to the testEnvironment
|
|
150
|
-
// testEnvironmentOptions: {},
|
|
151
|
-
|
|
152
|
-
// Adds a location field to test results
|
|
153
|
-
// testLocationInResults: false,
|
|
154
|
-
|
|
155
|
-
// The glob patterns Jest uses to detect test files
|
|
156
|
-
// testMatch: [
|
|
157
|
-
// "**/__tests__/**/*.[jt]s?(x)",
|
|
158
|
-
// "**/?(*.)+(spec|test).[tj]s?(x)"
|
|
159
|
-
// ],
|
|
160
|
-
|
|
161
|
-
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
|
|
162
|
-
// testPathIgnorePatterns: [
|
|
163
|
-
// "\\\\node_modules\\\\"
|
|
164
|
-
// ],
|
|
165
|
-
|
|
166
|
-
// The regexp pattern or array of patterns that Jest uses to detect test files
|
|
167
|
-
// testRegex: [],
|
|
168
|
-
|
|
169
|
-
// This option allows the use of a custom results processor
|
|
170
|
-
// testResultsProcessor: undefined,
|
|
171
|
-
|
|
172
|
-
// This option allows use of a custom test runner
|
|
173
|
-
// testRunner: "jest-circus/runner",
|
|
174
|
-
|
|
175
|
-
// A map from regular expressions to paths to transformers
|
|
176
|
-
// transform: undefined,
|
|
177
|
-
|
|
178
|
-
// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
|
|
179
|
-
// transformIgnorePatterns: [
|
|
180
|
-
// "\\\\node_modules\\\\",
|
|
181
|
-
// "\\.pnp\\.[^\\\\]+$"
|
|
182
|
-
// ],
|
|
183
|
-
|
|
184
|
-
// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
|
|
185
|
-
// unmockedModulePathPatterns: undefined,
|
|
186
|
-
|
|
187
|
-
// Indicates whether each individual test should be reported during the run
|
|
188
|
-
// verbose: undefined,
|
|
189
|
-
|
|
190
|
-
// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
|
|
191
|
-
// watchPathIgnorePatterns: [],
|
|
192
|
-
|
|
193
|
-
// Whether to use watchman for file crawling
|
|
194
|
-
// watchman: true,
|
|
195
|
-
};
|
|
196
|
-
|
|
197
|
-
export default config;
|
package/rollup.config.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import resolve from '@rollup/plugin-node-resolve';
|
|
2
|
-
import commonjs from '@rollup/plugin-commonjs';
|
|
3
|
-
import typescript from '@rollup/plugin-typescript';
|
|
4
|
-
// import dts from 'rollup-plugin-dts';
|
|
5
|
-
import { terser } from 'rollup-plugin-terser';
|
|
6
|
-
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
|
|
7
|
-
|
|
8
|
-
const packageJson = require('./package.json');
|
|
9
|
-
|
|
10
|
-
export default [
|
|
11
|
-
{
|
|
12
|
-
input: 'src/index.ts',
|
|
13
|
-
output: [
|
|
14
|
-
{
|
|
15
|
-
file: packageJson.main,
|
|
16
|
-
format: 'cjs',
|
|
17
|
-
sourcemap: true,
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
file: packageJson.module,
|
|
21
|
-
format: 'esm',
|
|
22
|
-
sourcemap: true,
|
|
23
|
-
},
|
|
24
|
-
],
|
|
25
|
-
plugins: [
|
|
26
|
-
peerDepsExternal(),
|
|
27
|
-
resolve(),
|
|
28
|
-
commonjs(),
|
|
29
|
-
typescript({ tsconfig: 'tsconfig.json', exclude: ['**/*.test.ts', '**/*.stories.tsx', 'jest.config.ts'] }),
|
|
30
|
-
terser(),
|
|
31
|
-
],
|
|
32
|
-
external: ['react', 'react-dom', 'styled-components'],
|
|
33
|
-
},
|
|
34
|
-
// {
|
|
35
|
-
// input: 'src/index.ts',
|
|
36
|
-
// output: [{ file: 'dist/types.d.ts', format: 'es' }],
|
|
37
|
-
// plugins: [dts.default()],
|
|
38
|
-
// },
|
|
39
|
-
];
|
package/stylelint.config.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
extends: ['stylelint-config-standard', 'stylelint-config-recess-order'],
|
|
3
|
-
rules: {
|
|
4
|
-
'declaration-empty-line-before': null,
|
|
5
|
-
'no-empty-source': null,
|
|
6
|
-
'no-invalid-double-slash-comments': null,
|
|
7
|
-
'declaration-no-important': null,
|
|
8
|
-
'property-no-unknown': [true, { ignoreProperties: [/.*\/\/.*/] }],
|
|
9
|
-
'declaration-block-no-redundant-longhand-properties': null,
|
|
10
|
-
'custom-property-pattern': null,
|
|
11
|
-
'shorthand-property-no-redundant-values': null,
|
|
12
|
-
'media-query-no-invalid': null,
|
|
13
|
-
},
|
|
14
|
-
customSyntax: 'postcss-styled-syntax',
|
|
15
|
-
};
|
package/tsconfig.json
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2015",
|
|
4
|
-
"esModuleInterop": true,
|
|
5
|
-
"strict": true,
|
|
6
|
-
"skipLibCheck": true,
|
|
7
|
-
"jsx": "react",
|
|
8
|
-
"module": "ESNext",
|
|
9
|
-
"declaration": true,
|
|
10
|
-
"declarationDir": "dist",
|
|
11
|
-
"sourceMap": true,
|
|
12
|
-
"moduleResolution": "node",
|
|
13
|
-
"emitDeclarationOnly": true,
|
|
14
|
-
"allowSyntheticDefaultImports": true,
|
|
15
|
-
"forceConsistentCasingInFileNames": true,
|
|
16
|
-
"resolveJsonModule": true,
|
|
17
|
-
"paths": {
|
|
18
|
-
"@/*": ["./src/*"]
|
|
19
|
-
},
|
|
20
|
-
"allowJs": false
|
|
21
|
-
},
|
|
22
|
-
"exclude": [
|
|
23
|
-
"dist",
|
|
24
|
-
"node_modules",
|
|
25
|
-
"types"
|
|
26
|
-
],
|
|
27
|
-
"include": ["**/*.ts", "**/*.tsx", "**/*.json"]
|
|
28
|
-
}
|
package/tsconfig.tsbuildinfo
DELETED
|
@@ -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.es2023.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.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.es2023.array.d.ts","./node_modules/typescript/lib/lib.es2023.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.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/scheduler/tracing.d.ts","./node_modules/@types/react/index.d.ts","./src/components/button/button.types.ts","./node_modules/styled-components/node_modules/csstype/index.d.ts","./node_modules/styled-components/dist/sheet/types.d.ts","./node_modules/styled-components/dist/sheet/sheet.d.ts","./node_modules/styled-components/dist/sheet/index.d.ts","./node_modules/styled-components/dist/models/componentstyle.d.ts","./node_modules/styled-components/dist/models/themeprovider.d.ts","./node_modules/styled-components/dist/utils/createwarntoomanyclasses.d.ts","./node_modules/styled-components/dist/utils/domelements.d.ts","./node_modules/styled-components/dist/types.d.ts","./node_modules/styled-components/dist/constructors/constructwithoptions.d.ts","./node_modules/styled-components/dist/constructors/styled.d.ts","./node_modules/styled-components/dist/constants.d.ts","./node_modules/styled-components/dist/constructors/createglobalstyle.d.ts","./node_modules/styled-components/dist/constructors/css.d.ts","./node_modules/styled-components/dist/models/keyframes.d.ts","./node_modules/styled-components/dist/constructors/keyframes.d.ts","./node_modules/styled-components/dist/hoc/withtheme.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/file.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/filereader.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/styled-components/dist/models/serverstylesheet.d.ts","./node_modules/@types/stylis/index.d.ts","./node_modules/styled-components/dist/models/stylesheetmanager.d.ts","./node_modules/styled-components/dist/utils/isstyledcomponent.d.ts","./node_modules/styled-components/dist/secretinternals.d.ts","./node_modules/styled-components/dist/base.d.ts","./node_modules/styled-components/dist/index.d.ts","./src/components/button/button.styles.ts","./src/components/button/button.tsx","./src/components/index.ts","./src/components/button/button.stories.ts","./node_modules/@types/estree/index.d.ts","./node_modules/@types/hoist-non-react-statics/index.d.ts","./node_modules/@types/resolve/index.d.ts","./node_modules/@types/scheduler/index.d.ts","./node_modules/@types/styled-components/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","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":"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":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","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":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"4350e5922fecd4bedda2964d69c213a1436349d0b8d260dd902795f5b94dc74b","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","b1bf87add0ccfb88472cd4c6013853d823a7efb791c10bb7a11679526be91eda",{"version":"e6f3077b1780226627f76085397d10c77a4d851c7154fd4b3f1eb114f4c2e56d","affectsGlobalScope":true},"13af7aef95e79360783e18e70b009bcecfa0945abaf10137f53c25fab1076cbe","4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","d6da3458d2b07b921be6fafa46564b369e618e20688a42f91f2955b66fe9ab84","01bc5b1cd9c756fb528b87315756b032e1f7c4e649b7841e186766094848f9d9","e27bbd0b7b7e54b3703765eebb805658672c52752342d8dfaa56820c88fc8333","da2472f38d0822ed781c936487b660252404b621b37dd5da33759f13ba86c54e","a7558641d2c225d93d5551a9a06dd6112afbac6cc04375effd66eb9dda784b4e","e4e0883cbb3029c517406d2956c0745e44403afd820e89a473485129ad66359b","d435508682d05f7de4ce7321f62a1429c6fba7325aed015ac76a88a39ff47f9f","1166129b6a7e8355cba71699fc103947b04a4c5016831308b9e49237fe9e33ae","76e70ccd3b742aa3c1ef281b537203232c5b4f920c4dcb06417c8e165f7ea028","207d5a9dae45caf7f2ddad194adbbfd5d163bee0b379cfbe5115c827e367ef68","b0e1cfe960f00ad8bdab0c509cf212795f747b17b96b35494760e8d1fae2e885","a6c5c2ac61526348cfe38229080a552b7016d614df208b7c3ad2bbd8219c4a95","9971dead65b4e7c286ed2ca96d76e47681700005a8485e3b0c72b41f03c7c4b0","d870bf94d9274815d95f0d5658825747d3afc24bd010e607392b3f034e695199","bbdac91149ba4f40bf869adc0e15fa41815ef212b452948fc8e773ff6ee38808","cd4ac052820440a83bed163d78fdfc25c621bf8157d177861ceb1f29c7b24465","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"55e4dd9e99dc8c0e0c157720f009c20299be773d4b3249249ef0c051471b84dc","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","b8b8a47e63ada76f22112f5b79f2e5fb0e41465415871c4aa1aff71a865b0ef6","c1b8b8aa2f0cc6da2d1819f05b016870c373c90907a7e6f67b9afe14031133fa","8123657e4dded68b70e5771cfe25571f41da84fa3cf5739888924e5e015ef7d8","1a18fcd7ea90842d336fb814801c837368c8ad16807f167b875b89267f1c2530","ed0c5e5f3b30334bbd99a73ee4faa47a799b4e5928114131f7b2d123f3d22ca0","6c2ad16b31ef481da774dd641a36f124dbcedeb3653891b9869639fa6f2f4a30","a5ff4e13e1414fc05690e056c37f9faec5a24570dd9b689ee0ad3384937cf2b2","8bc7e44c91fccdede4b3ade552e18ad124492703a87ab141b537feb5ca23cee8","41338281134c58b0e4d923c58b16f2544b1fae665e84ac3055b2d68de46b4794","3d1e484d54272d4412b1224e5f14e7a9ae29033ca67bff0f3781821b85b8f370","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","a7ca2a9e61286d74bc37fe64e5dcd7da04607f7f5432f7c651b47b573fc76cef","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504",{"version":"cfb95dbcdee02402fb9373c62ec4ba735b5479e5d879f39e7c23fe1d58186e31","affectsGlobalScope":true}],"root":[71,[182,185]],"options":{"allowImportingTsExtensions":true,"allowJs":true,"downlevelIteration":true,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"target":1},"fileIdsList":[[70],[89],[124],[125,130,158],[126,137,138,145,155,166],[126,127,137,145],[128,167],[129,130,138,146],[130,155,163],[131,133,137,145],[124,132],[133,134],[137],[135,137],[124,137],[137,138,139,155,166],[137,138,139,152,155,158],[122,125,171],[133,137,140,145,155,166],[137,138,140,141,145,155,163,166],[140,142,155,163,166],[89,90,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[137,143],[144,166,171],[133,137,145,155],[146],[147],[124,148],[149,165,171],[150],[151],[137,152,153],[152,154,167,169],[125,137,155,156,157,158],[125,155,157],[155,156],[158],[159],[124,155],[137,161,162],[161,162],[130,145,155,163],[164],[145,165],[125,140,151,166],[130,167],[155,168],[144,169],[170],[125,130,137,139,148,155,166,169,171],[155,172],[66,67,68,69],[67,70,187],[77,80,83,84,85,87,88,175,177,178,179],[70,80],[80],[80,86],[70,80,81],[80,82,180],[75,80],[70,75,155,174],[70,75,80,176],[75],[74],[73],[70,72,76,77,78,79],[99,103,166],[99,155,166],[94],[96,99,163,166],[145,163],[174],[94,174],[96,99,145,166],[91,92,95,98,125,137,155,166],[91,97],[95,99,125,158,166,174],[125,174],[115,125,174],[93,94,174],[99],[93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121],[99,106,107],[97,99,107,108],[98],[91,94,99],[99,103,107,108],[103],[97,99,102,166],[91,96,97,99,103,106],[125,155],[94,99,115,125,171,174],[71,181],[70,71,182],[183]],"referencedMap":[[187,1],[89,2],[90,2],[124,3],[125,4],[126,5],[127,6],[128,7],[129,8],[130,9],[131,10],[132,11],[133,12],[134,12],[136,13],[135,14],[137,15],[138,16],[139,17],[123,18],[140,19],[141,20],[142,21],[174,22],[143,23],[144,24],[145,25],[146,26],[147,27],[148,28],[149,29],[150,30],[151,31],[152,32],[153,32],[154,33],[155,34],[157,35],[156,36],[158,37],[159,38],[160,39],[161,40],[162,41],[163,42],[164,43],[165,44],[166,45],[167,46],[168,47],[169,48],[170,49],[171,50],[172,51],[70,52],[190,53],[180,54],[81,55],[84,55],[85,56],[87,57],[82,58],[88,55],[181,59],[76,60],[86,60],[175,61],[177,62],[77,1],[179,63],[75,64],[74,65],[80,66],[178,56],[106,67],[113,68],[105,67],[120,69],[97,70],[96,71],[119,72],[114,73],[117,74],[99,75],[98,76],[94,77],[93,78],[116,79],[95,80],[100,81],[104,81],[122,82],[121,81],[108,83],[109,84],[111,85],[107,86],[110,87],[115,72],[102,88],[103,89],[112,90],[92,91],[118,92],[182,93],[183,94],[71,1],[184,95]],"exportedModulesMap":[[187,1],[89,2],[90,2],[124,3],[125,4],[126,5],[127,6],[128,7],[129,8],[130,9],[131,10],[132,11],[133,12],[134,12],[136,13],[135,14],[137,15],[138,16],[139,17],[123,18],[140,19],[141,20],[142,21],[174,22],[143,23],[144,24],[145,25],[146,26],[147,27],[148,28],[149,29],[150,30],[151,31],[152,32],[153,32],[154,33],[155,34],[157,35],[156,36],[158,37],[159,38],[160,39],[161,40],[162,41],[163,42],[164,43],[165,44],[166,45],[167,46],[168,47],[169,48],[170,49],[171,50],[172,51],[70,52],[190,53],[180,54],[81,55],[84,55],[85,56],[87,57],[82,58],[88,55],[181,59],[76,60],[86,60],[175,61],[177,62],[77,1],[179,63],[75,64],[74,65],[80,66],[178,56],[106,67],[113,68],[105,67],[120,69],[97,70],[96,71],[119,72],[114,73],[117,74],[99,75],[98,76],[94,77],[93,78],[116,79],[95,80],[100,81],[104,81],[122,82],[121,81],[108,83],[109,84],[111,85],[107,86],[110,87],[115,72],[102,88],[103,89],[112,90],[92,91],[118,92],[182,93],[183,94],[71,1],[184,95]],"semanticDiagnosticsPerFile":[186,187,89,90,124,125,126,127,128,129,130,131,132,133,134,136,135,137,138,139,123,173,140,141,142,174,143,144,145,146,147,148,149,150,151,152,153,154,155,157,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,68,66,70,188,189,69,190,176,67,180,83,81,84,85,87,82,88,181,76,86,175,177,77,179,75,74,73,80,78,79,178,72,64,65,12,13,15,14,2,16,17,18,19,20,21,22,23,3,4,24,28,25,26,27,29,30,31,5,32,33,34,35,6,39,36,37,38,40,7,41,46,47,42,43,44,45,8,51,48,49,50,52,9,53,54,55,58,56,57,59,60,10,1,11,63,62,61,106,113,105,120,97,96,119,114,117,99,98,94,93,116,95,100,101,104,91,122,121,108,109,111,107,110,115,102,103,112,92,118,185,182,183,71,184],"affectedFilesPendingEmit":[185,182,183,71,184]},"version":"5.3.3"}
|