@instructure/emotion 8.23.1-snapshot.5 → 8.23.1-snapshot.7
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/es/EmotionThemeProvider/index.js +0 -41
- package/es/InstUISettingsProvider/index.js +0 -56
- package/lib/EmotionThemeProvider/index.js +0 -41
- package/lib/InstUISettingsProvider/index.js +0 -56
- package/package.json +11 -11
- package/src/EmotionThemeProvider/index.tsx +43 -84
- package/src/InstUISettingsProvider/index.tsx +0 -56
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/EmotionThemeProvider/index.d.ts +0 -41
- package/types/EmotionThemeProvider/index.d.ts.map +1 -1
- package/types/InstUISettingsProvider/index.d.ts +0 -56
- package/types/InstUISettingsProvider/index.d.ts.map +1 -1
|
@@ -30,47 +30,6 @@ const baseThemeProps = ['borders', 'breakpoints', 'colors', 'forms', 'media', 's
|
|
|
30
30
|
* ---
|
|
31
31
|
* category: components/utilities
|
|
32
32
|
* ---
|
|
33
|
-
*
|
|
34
|
-
* #### DEPRECATED Please use [InstUISettingsProvider](#InstUISettingsProvider)
|
|
35
|
-
* instead. It has the same functionality and adds a text direction context.
|
|
36
|
-
*
|
|
37
|
-
* Wrapper for the [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype) of emotion js.
|
|
38
|
-
*
|
|
39
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
40
|
-
*
|
|
41
|
-
* ```js
|
|
42
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
43
|
-
* import { EmotionThemeProvider } from '@instructure/emotion'
|
|
44
|
-
*
|
|
45
|
-
* @example
|
|
46
|
-
* <EmotionThemeProvider theme={canvas}>
|
|
47
|
-
* <div>Canvas themed part</div>
|
|
48
|
-
*
|
|
49
|
-
* <EmotionThemeProvider
|
|
50
|
-
* theme={{
|
|
51
|
-
* themeOverrides: {
|
|
52
|
-
* canvas: {
|
|
53
|
-
* colors: {
|
|
54
|
-
* backgroundLightest: '#fefefe'
|
|
55
|
-
* },
|
|
56
|
-
* borders: {
|
|
57
|
-
* style: 'dashed'
|
|
58
|
-
* }
|
|
59
|
-
* }
|
|
60
|
-
* }
|
|
61
|
-
* }}
|
|
62
|
-
* >
|
|
63
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
64
|
-
* </EmotionThemeProvider>
|
|
65
|
-
*
|
|
66
|
-
* <EmotionThemeProvider theme={instructure}>
|
|
67
|
-
* <div>Instructure themed part</div>
|
|
68
|
-
* </EmotionThemeProvider>
|
|
69
|
-
* </EmotionThemeProvider>
|
|
70
|
-
* ```
|
|
71
|
-
*
|
|
72
|
-
* @param {object} children
|
|
73
|
-
* @param {object} theme - A full theme or an override object
|
|
74
33
|
* @module EmotionThemeProvider
|
|
75
34
|
*/
|
|
76
35
|
|
|
@@ -34,62 +34,6 @@ import { getTheme } from '../EmotionThemeProvider';
|
|
|
34
34
|
* ---
|
|
35
35
|
* @module InstUISettingsProvider
|
|
36
36
|
* @tsProps
|
|
37
|
-
*
|
|
38
|
-
* Wrapper for emotion js's [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype).
|
|
39
|
-
*
|
|
40
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
41
|
-
* You can also specify the requested text direction for its descendants.
|
|
42
|
-
*
|
|
43
|
-
* It accepts the following props:
|
|
44
|
-
* - theme - A full theme or an override object.
|
|
45
|
-
* - dir - The text direction to use in the descendants. If not
|
|
46
|
-
* given it uses the following in this priority order:
|
|
47
|
-
* - The value given in a parent `TextDirectionContext`
|
|
48
|
-
* - The `dir` prop of `document.documentElement` or its `direction` CSS prop
|
|
49
|
-
* - `ltr`
|
|
50
|
-
* - instanceCounterMap - A [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map)
|
|
51
|
-
* which keeps track of specific InstUI components. (generally this is used for deterministic id generation for [SSR](/#server-side-rendering))
|
|
52
|
-
* - as - InstUISettingsProvider will wrap it's children with a HTML element when the its `dir` property is also set, this can be changed with the `as` property
|
|
53
|
-
*
|
|
54
|
-
* ```js
|
|
55
|
-
*
|
|
56
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
57
|
-
* import { InstUISettingsProvider } from '@instructure/emotion'
|
|
58
|
-
*
|
|
59
|
-
* <InstUISettingsProvider theme={canvas}>
|
|
60
|
-
* <div>Canvas themed part</div>
|
|
61
|
-
*
|
|
62
|
-
* <InstUISettingsProvider
|
|
63
|
-
* theme={{
|
|
64
|
-
* themeOverrides: {
|
|
65
|
-
* canvas: {
|
|
66
|
-
* colors: {
|
|
67
|
-
* backgroundLightest: '#fefefe'
|
|
68
|
-
* },
|
|
69
|
-
* borders: {
|
|
70
|
-
* style: 'dashed'
|
|
71
|
-
* }
|
|
72
|
-
* }
|
|
73
|
-
* }
|
|
74
|
-
* }}
|
|
75
|
-
* >
|
|
76
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
77
|
-
* </InstUISettingsProvider>
|
|
78
|
-
*
|
|
79
|
-
* <InstUISettingsProvider theme={instructure} dir="rtl">
|
|
80
|
-
* <div>Instructure themed part with RTL text</div>
|
|
81
|
-
* </InstUISettingsProvider>
|
|
82
|
-
*
|
|
83
|
-
* //this is mostly needed for Server Side Rendering, to read more:
|
|
84
|
-
* //read our [SSR](/#server-side-rendering) guide
|
|
85
|
-
* const counter = generateInstanceCounterMap()
|
|
86
|
-
* counter.set("Alert", 5)
|
|
87
|
-
* <InstUISettingsProvider instanceCounterMap={counter}>
|
|
88
|
-
* //this Alert's rendered DOM Node will have [id="Alert_5"] on it
|
|
89
|
-
* <Alert>Test!</Alert>
|
|
90
|
-
* </InstUISettingsProvider>
|
|
91
|
-
* </InstUISettingsProvider>
|
|
92
|
-
* ```
|
|
93
37
|
*/
|
|
94
38
|
function InstUISettingsProvider(_ref) {
|
|
95
39
|
let children = _ref.children,
|
|
@@ -44,47 +44,6 @@ const baseThemeProps = ['borders', 'breakpoints', 'colors', 'forms', 'media', 's
|
|
|
44
44
|
* ---
|
|
45
45
|
* category: components/utilities
|
|
46
46
|
* ---
|
|
47
|
-
*
|
|
48
|
-
* #### DEPRECATED Please use [InstUISettingsProvider](#InstUISettingsProvider)
|
|
49
|
-
* instead. It has the same functionality and adds a text direction context.
|
|
50
|
-
*
|
|
51
|
-
* Wrapper for the [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype) of emotion js.
|
|
52
|
-
*
|
|
53
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
54
|
-
*
|
|
55
|
-
* ```js
|
|
56
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
57
|
-
* import { EmotionThemeProvider } from '@instructure/emotion'
|
|
58
|
-
*
|
|
59
|
-
* @example
|
|
60
|
-
* <EmotionThemeProvider theme={canvas}>
|
|
61
|
-
* <div>Canvas themed part</div>
|
|
62
|
-
*
|
|
63
|
-
* <EmotionThemeProvider
|
|
64
|
-
* theme={{
|
|
65
|
-
* themeOverrides: {
|
|
66
|
-
* canvas: {
|
|
67
|
-
* colors: {
|
|
68
|
-
* backgroundLightest: '#fefefe'
|
|
69
|
-
* },
|
|
70
|
-
* borders: {
|
|
71
|
-
* style: 'dashed'
|
|
72
|
-
* }
|
|
73
|
-
* }
|
|
74
|
-
* }
|
|
75
|
-
* }}
|
|
76
|
-
* >
|
|
77
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
78
|
-
* </EmotionThemeProvider>
|
|
79
|
-
*
|
|
80
|
-
* <EmotionThemeProvider theme={instructure}>
|
|
81
|
-
* <div>Instructure themed part</div>
|
|
82
|
-
* </EmotionThemeProvider>
|
|
83
|
-
* </EmotionThemeProvider>
|
|
84
|
-
* ```
|
|
85
|
-
*
|
|
86
|
-
* @param {object} children
|
|
87
|
-
* @param {object} theme - A full theme or an override object
|
|
88
47
|
* @module EmotionThemeProvider
|
|
89
48
|
*/
|
|
90
49
|
|
|
@@ -54,62 +54,6 @@ var _EmotionThemeProvider = require("../EmotionThemeProvider");
|
|
|
54
54
|
* ---
|
|
55
55
|
* @module InstUISettingsProvider
|
|
56
56
|
* @tsProps
|
|
57
|
-
*
|
|
58
|
-
* Wrapper for emotion js's [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype).
|
|
59
|
-
*
|
|
60
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
61
|
-
* You can also specify the requested text direction for its descendants.
|
|
62
|
-
*
|
|
63
|
-
* It accepts the following props:
|
|
64
|
-
* - theme - A full theme or an override object.
|
|
65
|
-
* - dir - The text direction to use in the descendants. If not
|
|
66
|
-
* given it uses the following in this priority order:
|
|
67
|
-
* - The value given in a parent `TextDirectionContext`
|
|
68
|
-
* - The `dir` prop of `document.documentElement` or its `direction` CSS prop
|
|
69
|
-
* - `ltr`
|
|
70
|
-
* - instanceCounterMap - A [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map)
|
|
71
|
-
* which keeps track of specific InstUI components. (generally this is used for deterministic id generation for [SSR](/#server-side-rendering))
|
|
72
|
-
* - as - InstUISettingsProvider will wrap it's children with a HTML element when the its `dir` property is also set, this can be changed with the `as` property
|
|
73
|
-
*
|
|
74
|
-
* ```js
|
|
75
|
-
*
|
|
76
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
77
|
-
* import { InstUISettingsProvider } from '@instructure/emotion'
|
|
78
|
-
*
|
|
79
|
-
* <InstUISettingsProvider theme={canvas}>
|
|
80
|
-
* <div>Canvas themed part</div>
|
|
81
|
-
*
|
|
82
|
-
* <InstUISettingsProvider
|
|
83
|
-
* theme={{
|
|
84
|
-
* themeOverrides: {
|
|
85
|
-
* canvas: {
|
|
86
|
-
* colors: {
|
|
87
|
-
* backgroundLightest: '#fefefe'
|
|
88
|
-
* },
|
|
89
|
-
* borders: {
|
|
90
|
-
* style: 'dashed'
|
|
91
|
-
* }
|
|
92
|
-
* }
|
|
93
|
-
* }
|
|
94
|
-
* }}
|
|
95
|
-
* >
|
|
96
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
97
|
-
* </InstUISettingsProvider>
|
|
98
|
-
*
|
|
99
|
-
* <InstUISettingsProvider theme={instructure} dir="rtl">
|
|
100
|
-
* <div>Instructure themed part with RTL text</div>
|
|
101
|
-
* </InstUISettingsProvider>
|
|
102
|
-
*
|
|
103
|
-
* //this is mostly needed for Server Side Rendering, to read more:
|
|
104
|
-
* //read our [SSR](/#server-side-rendering) guide
|
|
105
|
-
* const counter = generateInstanceCounterMap()
|
|
106
|
-
* counter.set("Alert", 5)
|
|
107
|
-
* <InstUISettingsProvider instanceCounterMap={counter}>
|
|
108
|
-
* //this Alert's rendered DOM Node will have [id="Alert_5"] on it
|
|
109
|
-
* <Alert>Test!</Alert>
|
|
110
|
-
* </InstUISettingsProvider>
|
|
111
|
-
* </InstUISettingsProvider>
|
|
112
|
-
* ```
|
|
113
57
|
*/
|
|
114
58
|
function InstUISettingsProvider(_ref) {
|
|
115
59
|
let children = _ref.children,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/emotion",
|
|
3
|
-
"version": "8.23.1-snapshot.
|
|
3
|
+
"version": "8.23.1-snapshot.7+67fb0a5be",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.13.10",
|
|
27
27
|
"@emotion/react": "^11",
|
|
28
|
-
"@instructure/console": "8.23.1-snapshot.
|
|
29
|
-
"@instructure/shared-types": "8.23.1-snapshot.
|
|
30
|
-
"@instructure/ui-decorator": "8.23.1-snapshot.
|
|
31
|
-
"@instructure/ui-i18n": "8.23.1-snapshot.
|
|
32
|
-
"@instructure/ui-react-utils": "8.23.1-snapshot.
|
|
33
|
-
"@instructure/ui-themes": "8.23.1-snapshot.
|
|
34
|
-
"@instructure/ui-utils": "8.23.1-snapshot.
|
|
28
|
+
"@instructure/console": "8.23.1-snapshot.7+67fb0a5be",
|
|
29
|
+
"@instructure/shared-types": "8.23.1-snapshot.7+67fb0a5be",
|
|
30
|
+
"@instructure/ui-decorator": "8.23.1-snapshot.7+67fb0a5be",
|
|
31
|
+
"@instructure/ui-i18n": "8.23.1-snapshot.7+67fb0a5be",
|
|
32
|
+
"@instructure/ui-react-utils": "8.23.1-snapshot.7+67fb0a5be",
|
|
33
|
+
"@instructure/ui-themes": "8.23.1-snapshot.7+67fb0a5be",
|
|
34
|
+
"@instructure/ui-utils": "8.23.1-snapshot.7+67fb0a5be",
|
|
35
35
|
"emotion-theming": "^11",
|
|
36
36
|
"hoist-non-react-statics": "^3.3.2",
|
|
37
37
|
"lodash": "^4",
|
|
38
38
|
"prop-types": "^15"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@instructure/ui-babel-preset": "8.23.1-snapshot.
|
|
42
|
-
"@instructure/ui-test-utils": "8.23.1-snapshot.
|
|
41
|
+
"@instructure/ui-babel-preset": "8.23.1-snapshot.7+67fb0a5be",
|
|
42
|
+
"@instructure/ui-test-utils": "8.23.1-snapshot.7+67fb0a5be",
|
|
43
43
|
"@types/lodash": "^4.14.171",
|
|
44
44
|
"cpy-cli": "^3.1.1"
|
|
45
45
|
},
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"sideEffects": false,
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "67fb0a5bed0138c5152872999bf1138dd2fd8fd7"
|
|
54
54
|
}
|
|
@@ -59,47 +59,6 @@ const baseThemeProps: BaseThemeVariableKeys = [
|
|
|
59
59
|
* ---
|
|
60
60
|
* category: components/utilities
|
|
61
61
|
* ---
|
|
62
|
-
*
|
|
63
|
-
* #### DEPRECATED Please use [InstUISettingsProvider](#InstUISettingsProvider)
|
|
64
|
-
* instead. It has the same functionality and adds a text direction context.
|
|
65
|
-
*
|
|
66
|
-
* Wrapper for the [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype) of emotion js.
|
|
67
|
-
*
|
|
68
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
69
|
-
*
|
|
70
|
-
* ```js
|
|
71
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
72
|
-
* import { EmotionThemeProvider } from '@instructure/emotion'
|
|
73
|
-
*
|
|
74
|
-
* @example
|
|
75
|
-
* <EmotionThemeProvider theme={canvas}>
|
|
76
|
-
* <div>Canvas themed part</div>
|
|
77
|
-
*
|
|
78
|
-
* <EmotionThemeProvider
|
|
79
|
-
* theme={{
|
|
80
|
-
* themeOverrides: {
|
|
81
|
-
* canvas: {
|
|
82
|
-
* colors: {
|
|
83
|
-
* backgroundLightest: '#fefefe'
|
|
84
|
-
* },
|
|
85
|
-
* borders: {
|
|
86
|
-
* style: 'dashed'
|
|
87
|
-
* }
|
|
88
|
-
* }
|
|
89
|
-
* }
|
|
90
|
-
* }}
|
|
91
|
-
* >
|
|
92
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
93
|
-
* </EmotionThemeProvider>
|
|
94
|
-
*
|
|
95
|
-
* <EmotionThemeProvider theme={instructure}>
|
|
96
|
-
* <div>Instructure themed part</div>
|
|
97
|
-
* </EmotionThemeProvider>
|
|
98
|
-
* </EmotionThemeProvider>
|
|
99
|
-
* ```
|
|
100
|
-
*
|
|
101
|
-
* @param {object} children
|
|
102
|
-
* @param {object} theme - A full theme or an override object
|
|
103
62
|
* @module EmotionThemeProvider
|
|
104
63
|
*/
|
|
105
64
|
function EmotionThemeProvider({
|
|
@@ -122,56 +81,56 @@ EmotionThemeProvider.defaultProps = { theme: {} }
|
|
|
122
81
|
* @returns {function} A function that returns with the theme object for the [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype)
|
|
123
82
|
* @module getTheme
|
|
124
83
|
*/
|
|
125
|
-
const getTheme =
|
|
126
|
-
|
|
127
|
-
) => {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
84
|
+
const getTheme =
|
|
85
|
+
(themeOrOverride: ThemeOrOverride) =>
|
|
86
|
+
(ancestorTheme = {} as BaseTheme) => {
|
|
87
|
+
try {
|
|
88
|
+
// If a valid InstUI theme is given, it just returns the theme.
|
|
89
|
+
if (isBaseTheme(themeOrOverride)) {
|
|
90
|
+
return themeOrOverride
|
|
91
|
+
}
|
|
92
|
+
} catch {
|
|
93
|
+
// If the prop passed is not an Object, it will throw an error.
|
|
94
|
+
// We are using this fail-safe here for the non-TS users,
|
|
95
|
+
// because the whole page can break without a theme.
|
|
96
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
97
|
+
console.warn(
|
|
98
|
+
'The `theme` property provided to EmotionThemeProvider is not a valid InstUI theme object.\ntheme: ',
|
|
99
|
+
themeOrOverride
|
|
100
|
+
)
|
|
101
|
+
}
|
|
102
|
+
// eslint-disable-next-line no-param-reassign
|
|
103
|
+
themeOrOverride = {}
|
|
142
104
|
}
|
|
143
|
-
// eslint-disable-next-line no-param-reassign
|
|
144
|
-
themeOrOverride = {}
|
|
145
|
-
}
|
|
146
105
|
|
|
147
|
-
|
|
148
|
-
|
|
106
|
+
// we need to clone the ancestor theme not to override it
|
|
107
|
+
let currentTheme
|
|
149
108
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
109
|
+
if (Object.keys(ancestorTheme).length === 0) {
|
|
110
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
111
|
+
console.warn(
|
|
112
|
+
'No theme provided for [EmotionThemeProvider], using default `canvas` theme.'
|
|
113
|
+
)
|
|
114
|
+
}
|
|
115
|
+
currentTheme = cloneDeep(canvas)
|
|
116
|
+
} else {
|
|
117
|
+
currentTheme = cloneDeep(ancestorTheme)
|
|
155
118
|
}
|
|
156
|
-
currentTheme = cloneDeep(canvas)
|
|
157
|
-
} else {
|
|
158
|
-
currentTheme = cloneDeep(ancestorTheme)
|
|
159
|
-
}
|
|
160
119
|
|
|
161
|
-
|
|
120
|
+
const themeName = currentTheme.key
|
|
162
121
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
122
|
+
// we pick the overrides for the current theme from the override object
|
|
123
|
+
const currentThemeOverrides =
|
|
124
|
+
(
|
|
125
|
+
(themeOrOverride as Overrides)?.themeOverrides as SpecificThemeOverride
|
|
126
|
+
)?.[themeName] || {}
|
|
168
127
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
128
|
+
return merge(
|
|
129
|
+
{},
|
|
130
|
+
currentTheme,
|
|
131
|
+
merge({}, themeOrOverride, currentThemeOverrides)
|
|
132
|
+
)
|
|
133
|
+
}
|
|
175
134
|
|
|
176
135
|
const isBaseTheme = (theme: ThemeOrOverride): theme is BaseTheme => {
|
|
177
136
|
if (Array.isArray(theme) || typeof theme === 'function') {
|
|
@@ -73,62 +73,6 @@ type InstUIProviderProps = {
|
|
|
73
73
|
* ---
|
|
74
74
|
* @module InstUISettingsProvider
|
|
75
75
|
* @tsProps
|
|
76
|
-
*
|
|
77
|
-
* Wrapper for emotion js's [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype).
|
|
78
|
-
*
|
|
79
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
80
|
-
* You can also specify the requested text direction for its descendants.
|
|
81
|
-
*
|
|
82
|
-
* It accepts the following props:
|
|
83
|
-
* - theme - A full theme or an override object.
|
|
84
|
-
* - dir - The text direction to use in the descendants. If not
|
|
85
|
-
* given it uses the following in this priority order:
|
|
86
|
-
* - The value given in a parent `TextDirectionContext`
|
|
87
|
-
* - The `dir` prop of `document.documentElement` or its `direction` CSS prop
|
|
88
|
-
* - `ltr`
|
|
89
|
-
* - instanceCounterMap - A [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map)
|
|
90
|
-
* which keeps track of specific InstUI components. (generally this is used for deterministic id generation for [SSR](/#server-side-rendering))
|
|
91
|
-
* - as - InstUISettingsProvider will wrap it's children with a HTML element when the its `dir` property is also set, this can be changed with the `as` property
|
|
92
|
-
*
|
|
93
|
-
* ```js
|
|
94
|
-
*
|
|
95
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
96
|
-
* import { InstUISettingsProvider } from '@instructure/emotion'
|
|
97
|
-
*
|
|
98
|
-
* <InstUISettingsProvider theme={canvas}>
|
|
99
|
-
* <div>Canvas themed part</div>
|
|
100
|
-
*
|
|
101
|
-
* <InstUISettingsProvider
|
|
102
|
-
* theme={{
|
|
103
|
-
* themeOverrides: {
|
|
104
|
-
* canvas: {
|
|
105
|
-
* colors: {
|
|
106
|
-
* backgroundLightest: '#fefefe'
|
|
107
|
-
* },
|
|
108
|
-
* borders: {
|
|
109
|
-
* style: 'dashed'
|
|
110
|
-
* }
|
|
111
|
-
* }
|
|
112
|
-
* }
|
|
113
|
-
* }}
|
|
114
|
-
* >
|
|
115
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
116
|
-
* </InstUISettingsProvider>
|
|
117
|
-
*
|
|
118
|
-
* <InstUISettingsProvider theme={instructure} dir="rtl">
|
|
119
|
-
* <div>Instructure themed part with RTL text</div>
|
|
120
|
-
* </InstUISettingsProvider>
|
|
121
|
-
*
|
|
122
|
-
* //this is mostly needed for Server Side Rendering, to read more:
|
|
123
|
-
* //read our [SSR](/#server-side-rendering) guide
|
|
124
|
-
* const counter = generateInstanceCounterMap()
|
|
125
|
-
* counter.set("Alert", 5)
|
|
126
|
-
* <InstUISettingsProvider instanceCounterMap={counter}>
|
|
127
|
-
* //this Alert's rendered DOM Node will have [id="Alert_5"] on it
|
|
128
|
-
* <Alert>Test!</Alert>
|
|
129
|
-
* </InstUISettingsProvider>
|
|
130
|
-
* </InstUISettingsProvider>
|
|
131
|
-
* ```
|
|
132
76
|
*/
|
|
133
77
|
function InstUISettingsProvider({
|
|
134
78
|
children,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.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.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.esnext.intl.d.ts","../shared-types/types/Colors.d.ts","../shared-types/types/BaseTheme.d.ts","../shared-types/types/ComponentThemeVariables.d.ts","../shared-types/types/ComponentThemeMap.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","../shared-types/types/CommonProps.d.ts","../shared-types/types/CommonTypes.d.ts","../shared-types/types/UtilityTypes.d.ts","../shared-types/types/index.d.ts","./src/EmotionTypes.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/hoist-non-react-statics/index.d.ts","../console/types/console.d.ts","../console/types/macro.d.ts","../console/types/index.d.ts","../ui-decorator/types/decorator.d.ts","../ui-decorator/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/utils/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/cache/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/serialize/types/index.d.ts","../../node_modules/@emotion/react/types/jsx-namespace.d.ts","../../node_modules/@emotion/react/types/helper.d.ts","../../node_modules/@emotion/react/types/theming.d.ts","../../node_modules/@emotion/react/types/index.d.ts","../ui-theme-tokens/types/canvas/index.d.ts","../ui-theme-tokens/types/canvasHighContrast/index.d.ts","../ui-theme-tokens/types/instructure/index.d.ts","../ui-theme-tokens/types/utils/functionalColors.d.ts","../ui-theme-tokens/types/index.d.ts","../canvas-high-contrast-theme/types/index.d.ts","../canvas-theme/types/index.d.ts","../instructure-theme/types/index.d.ts","../ui-themes/types/index.d.ts","../../node_modules/bowser/typings.d.ts","../ui-utils/types/Browser.d.ts","../ui-utils/types/isEdge.d.ts","../ui-utils/types/isIE11.d.ts","../ui-utils/types/capitalizeFirstLetter.d.ts","../ui-utils/types/cloneArray.d.ts","../ui-utils/types/createChainedFunction.d.ts","../../node_modules/fast-deep-equal/index.d.ts","../ui-utils/types/deepEqual.d.ts","../ui-utils/types/hash.d.ts","../ui-utils/types/generateId.d.ts","../ui-utils/types/isEmpty.d.ts","../ui-utils/types/mergeDeep.d.ts","../ui-utils/types/ms.d.ts","../ui-utils/types/parseUnit.d.ts","../ui-utils/types/px.d.ts","../ui-utils/types/shallowEqual.d.ts","../ui-utils/types/within.d.ts","../ui-utils/types/camelize.d.ts","../ui-utils/types/pascalize.d.ts","../ui-utils/types/index.d.ts","./src/useTheme.ts","./src/withStyle.tsx","./src/getComponentThemeOverride.ts","../../node_modules/@emotion/react/types/css-prop.d.ts","./src/EmotionThemeProvider/index.tsx","../ui-i18n/types/ApplyLocale/props.d.ts","../ui-i18n/types/ApplyLocale/index.d.ts","../ui-i18n/types/ApplyLocale/ApplyLocaleContext.d.ts","../ui-i18n/types/TextDirectionContext.d.ts","../ui-i18n/types/bidirectional.d.ts","../ui-i18n/types/textDirectionContextConsumer.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/moment-timezone/index.d.ts","../ui-i18n/types/DateTime.d.ts","../ui-i18n/types/getTextDirection.d.ts","../ui-i18n/types/I18nPropTypes.d.ts","../ui-i18n/types/Locale.d.ts","../ui-i18n/types/ApplyTextDirection/props.d.ts","../ui-i18n/types/ApplyTextDirection/index.d.ts","../ui-i18n/types/index.d.ts","../ui-react-utils/types/callRenderProp.d.ts","../ui-react-utils/types/ComponentIdentifier.d.ts","../ui-react-utils/types/deprecated.d.ts","../ui-react-utils/types/ensureSingleChild.d.ts","../ui-react-utils/types/experimental.d.ts","../ui-react-utils/types/hack.d.ts","../ui-react-utils/types/getDisplayName.d.ts","../ui-react-utils/types/getElementType.d.ts","../ui-react-utils/types/getInteraction.d.ts","../ui-react-utils/types/matchComponentTypes.d.ts","../ui-react-utils/types/omitProps.d.ts","../ui-react-utils/types/passthroughProps.d.ts","../ui-react-utils/types/pickProps.d.ts","../ui-react-utils/types/safeCloneElement.d.ts","../ui-react-utils/types/windowMessageListener.d.ts","../ui-react-utils/types/DeterministicIdContext/DeterministicIdContextProvider.d.ts","../ui-react-utils/types/DeterministicIdContext/generateInstanceCounterMap.d.ts","../ui-react-utils/types/DeterministicIdContext/DeterministicIdContext.d.ts","../ui-react-utils/types/DeterministicIdContext/withDeterministicId.d.ts","../ui-react-utils/types/DeterministicIdContext/index.d.ts","../ui-react-utils/types/index.d.ts","./src/InstUISettingsProvider/index.tsx","./src/styleUtils/ThemeablePropValues.ts","./src/styleUtils/ThemeablePropTypes.ts","./src/styleUtils/makeThemeVars.ts","./src/styleUtils/getShorthandPropValue.ts","./src/styleUtils/mirrorShorthand.ts","./src/styleUtils/mirrorShorthandCorners.ts","./src/styleUtils/mirrorShorthandEdges.ts","./src/styleUtils/index.ts","./src/index.ts","../ui-axe-check/types/runAxeCheck.d.ts","../ui-axe-check/types/index.d.ts","../ui-test-queries/types/utils/helpers.d.ts","../ui-test-queries/types/utils/queries.d.ts","../ui-test-queries/types/utils/events.d.ts","../ui-test-queries/types/utils/bindElementToEvents.d.ts","../ui-test-queries/types/utils/bindElementToUtilities.d.ts","../ui-test-queries/types/utils/bindElementToMethods.d.ts","../ui-test-queries/types/utils/selectors.d.ts","../ui-test-queries/types/utils/parseQueryArguments.d.ts","../ui-test-queries/types/utils/queryResult.d.ts","../ui-test-queries/types/utils/firstOrNull.d.ts","../ui-test-queries/types/utils/isElement.d.ts","../ui-test-queries/types/utils/elementToString.d.ts","../ui-test-queries/types/utils/matchers.d.ts","../ui-test-queries/types/index.d.ts","../ui-test-locator/types/utils/locator.d.ts","../ui-test-locator/types/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sinon/index.d.ts","../ui-test-sandbox/types/utils/reactComponentWrapper.d.ts","../ui-test-sandbox/types/utils/sandbox.d.ts","../ui-test-sandbox/types/index.d.ts","../ui-test-utils/types/utils/shims.d.ts","../ui-test-utils/types/utils/waitForExpect.d.ts","../../node_modules/@types/chai/index.d.ts","../ui-test-utils/types/utils/expect.d.ts","../ui-test-utils/types/utils/generateA11yTests.d.ts","../ui-test-utils/types/utils/generateComponentExamples.d.ts","../ui-test-utils/types/utils/generatePropCombinations.d.ts","../ui-test-utils/types/index.d.ts","./src/EmotionThemeProvider/__tests__/EmotionThemeProvider.test.tsx","./src/InstUISettingsProvider/__tests__/InstUISettingProvider.test.tsx","./src/__tests__/getComponentThemeOverride.test.ts","./src/__tests__/withStyle.test.tsx","./src/styleUtils/__tests__/getShorthandPropValue.test.ts","./src/styleUtils/__tests__/makeThemeVars.test.ts","./src/styleUtils/__tests__/mirrorShorthand.test.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/babel-plugin-macros/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.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/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/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/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/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/bonjour/index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/chai-string/index.d.ts","../../node_modules/@types/codemirror/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/component-emitter/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/decompress/index.d.ts","../../node_modules/@types/dirty-chai/index.d.ts","../../node_modules/@types/got/index.d.ts","../../node_modules/@types/download/index.d.ts","../../node_modules/@types/escape-html/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/git-url-parse/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/ast-types/types.d.ts","../../node_modules/ast-types/gen/namedTypes.d.ts","../../node_modules/ast-types/gen/kinds.d.ts","../../node_modules/ast-types/gen/builders.d.ts","../../node_modules/ast-types/lib/types.d.ts","../../node_modules/ast-types/lib/path.d.ts","../../node_modules/ast-types/lib/scope.d.ts","../../node_modules/ast-types/lib/node-path.d.ts","../../node_modules/ast-types/lib/path-visitor.d.ts","../../node_modules/ast-types/gen/visitor.d.ts","../../node_modules/ast-types/main.d.ts","../../node_modules/recast/lib/options.d.ts","../../node_modules/recast/lib/parser.d.ts","../../node_modules/recast/lib/printer.d.ts","../../node_modules/recast/main.d.ts","../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts","../../node_modules/@types/jscodeshift/src/collections/Node.d.ts","../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts","../../node_modules/@types/jscodeshift/src/Collection.d.ts","../../node_modules/@types/jscodeshift/src/template.d.ts","../../node_modules/@types/jscodeshift/src/core.d.ts","../../node_modules/@types/jscodeshift/index.d.ts","../../node_modules/@types/json-buffer/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/log4js/types/log4js.d.ts","../../node_modules/@types/karma/lib/constants.d.ts","../../node_modules/@types/karma/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/linkify-it/index.d.ts","../../node_modules/@types/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../node_modules/@types/markdown-it/lib/token.d.ts","../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../node_modules/@types/markdown-it/lib/index.d.ts","../../node_modules/@types/markdown-it/index.d.ts","../../node_modules/@types/marked/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/no-scroll/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/serve-index/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/sizzle/index.d.ts","../../node_modules/@types/sockjs/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/tern/lib/tern/index.d.ts","../../node_modules/@types/tern/lib/infer/index.d.ts","../../node_modules/@types/tern/index.d.ts","../../node_modules/@types/tinycolor2/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/@types/vfile-message/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/webpack/node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/which/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","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":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"4e720504aef76fbcee2d511d7787073c4b596572885571e31c00ce7c73246d41","22059a0bc69fbf547d07b7fdcc1acce72494c588d66f785a6d73862c96eff4eb","17e04c4cbcdfd0158af2993d6ce4fc12ba9f1d6ce77d5bcef2d94778dbcaa02b","c383e81ebc770b74246a994f6adeaa225b6cbefbb2295deb268ec6c291e89ee8",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ce4e9cdf1ec90f3d435a4df18342b187805924f6046e872e76d3c1659ad545ff","affectsGlobalScope":true},"3a3ae5156325111e8708edd12384166c6a96faed172ae3f13705e64c13edbefc","ee4048f67913509fc0e1b0386362b66c23053f24a4a68b2f97c78939ec349243","f19df57b67f722244517dbc9251a4ef69602d8caab008940eef053da1e6f02fd","29eeacf8cd001a5a4eb5b69e8ebfbc355f292183aedb1cc4436fe95d2640005b","968e2613060b8a248f31091390ef658875a7d479e0d60fda5f132e854cfd5709","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","096aa55b256f3d96a01ff91cf1248cbc462597aaffba4de3037dc16677c9dc35","d5dc194a79159a5811c99c13c26db7e0377bc8d51022f7897e03528f7b905305","22916c51ce55bcb3498785c4c3fe9490c9376e4bf0f8cc46fcf1cc75ebacac87","14bd133a159623592d94a00d1acb4d7ee5e467311b72172bcdd3ef60dca0a321","65e9ad7a76bc1bc1642052b3c4c00b2cae741fc15cb43a482ea8cba60b361b74","531cd80e4dba2620d86844a50e7d21b89436e56a14e66d6774e99b3759ac69ad","03d59e612afdc3039a83b12d45b026306b291cfc8e2fc72859f7902b8a857caf","93b24ca76698e62732d72800da132367639a4426363c821338bbbd7cf6b64443","ecfa9ce3a5a37d15b813065e8a7cdf677a0f493018e47ce59815443dfbb9c910","83e56d3337e1a6dbafdbe5a2502a84c330b1a328ed2860d689b2ded82b1f5c95","e630f8a3c49d5db0a8af774799abdb8f19675b940a6cfa25eca35e5280709f28","909bac92983e542dd29efcf9eedf4ab5a330767c70c505a52326f7f5ee4b288d","551058a5d20411e41194e2f1f0b80dfc4f04840b718c3177237e8d3d6a918dcc","0ccb2c677269948b614113fc10f9442ed70e01946a541aa94059332b1d034fa0","a13e8ae38660d8e2d7b6205596051a24348e9475f0c051d76b4db38ebc636bbc","76bf634dfa47ecbcd4a898d62b1d431e2d341f12ca8ddd3495952f80fb677cfc","299963068e45d834423662dbff5613f892787b466a2b2740580228ad64a1575a","84f86cb3f40cb9f7a56bcb5bd7bd95bd34f9c7208d054896c2c1f674cb66f9e9","461f89173b246adca5746f774f6120e728483920ff9d77230444fb39dc919770","344b5e510f5bb707233e9b38159297fbf8f45d5cf82d62bae57ca69a3e100486","cd2add8f15c675e3dacac1c8f56b5a869524e9f1a3fba303202ab029136941a7","56013b9deaf9151ea56e2be2d8e2bbd761782f79c45d9e7ce7876f81a500807b","7f76d3bf08a646663ba42ee0c6e2a142ba3b05fc33c9f14fd9c58818c2ff33f4","0a809c5c2f05dc430a78528bf58c9c17b51b24d67e9078f731e1547ae7e79f8a","7af1695141ea7e9511eef0e4965385e17eac8c048662edc2986e064cfa7d5460","653f8d7633aad7eb2072f44b43da1f61c2535c778568e627e0f7af9eff9acb07","6156ccb63064dcbc53051479128854f34dc19ff52594314c498ebc4d771d5aa9","97e66f905c6fa7981e52911fa75f3f6b25e32f2c2efde740d8a10c5c9c6a8a33","37ffe3c12813b6a6d512f7c27b71f3388d03dafa10555ad5094cea393ed3d1f6","9a289f835e173c081f5d1594172daac61ebb66e9c5fbb83b0e51aa6f9481d0d6","33eafaeb29f553f65bd21f8e22499061837ba627df701d88beddda2b4216ec52","ddcfceb985d43240e3779240df8fffa7e00fd6fb06d367798d9677bb37e9bf20","2ec4d47bce397037d3fb79f5ad1bf77e6c3fd7d06701407d48dad67ffbeb3c7b","77af8eede757d9024fe38c9a3474894ffe63cce790b14f5d0982ea44c572edec","5afe439c268da5c8ecbce7114aa525661337623c409dcab9eb1ed1e68fd67a3f","d8d64906e098a5791cd6ade7191815e32852929a164cbbf3243a79e9f6194649","e55d4b06351decc15e5c80bca7549269dc8032f559bba536bc71d8b83639fe1f","87faa682a93cfd5edd17ed848505634958a3ec2a80e2f368a5bce0e92271d631","d09c868c2d8e27e71177aef6472e1f73d33b9d6f60fe8e62aff9db578b076495","5a27cfefaf22bf2e090933efc5a1000d4d3bd8aaff65811514b4681e0d52d192","d1136f37111f18b004dd7dfb7fc1d427f3ff4e68c139116bf3201b4fb6526cb1","4e5aadaf107848dc1fbd38cd1843eff3b77b7e448b72b6491979dac01e5a9670","bdbf79106ee9a21ab8557e4e45175320513c5b11f2362a37b14384035135da4d","22388e097780e82e2ca6140083d09e19f767b51eb6f3803534f9eb4f5335904d","0789c1fae5b8decf739e65ba32a400698b274dc88f00c77c10cb0ced53b277db","91813cab02c60e7be541f2e08fc06ae817b408dd3bf6d53c6380e5369d412b96","e0abbe543ad93372268186c725cf94a5039f90fbe502e16d585d87507a4a12da","1038130a43b38c3293ade1688878a8160347c1423b49bb3d65d2f4733efea753","2e955a85ad4a5f0daedeeaccdb7f18d39d557913f8aed2407ec0e1788dfb4e22","f9f5b02b40d2c75824c0723d089da0a621c55cf7340e96ddc1c66d3c3fe5938f","00804db6018b756bfa5681d70b4b668186927c20a3a7998209d5d769ce875988","9259cd3205f2ef14c772ecfc237aa5891cb4fcf107c8f2758519b9c834ebe861","47c3e00e515e78f253e3b3dec62e3edc56c3853b73bb2d31d0b1f0c2f89195a5","4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","3ff27a264325767dd546133238d968f649d1376dc119e790fcd1a25661685de7","a5410df44597620dea3fd0de562bcf463b1c5a3ab2805aeb519850810a0f8b79","23476e5308473228ced4404c49e1db9ca85a299211a9d0b39fbf69a3eef74cac","d316bac8af1a0a8ad096d567ff1ffedd7487cd3430aa44d057eb4debf64b36f0","401e7185d7ce3c4377ac70f7300c725392a8302553021c60e1ae6f9ad1363812","9089cd2d76d87d308baa2375ce0b241295ea2bfaf641e12c874e84c6b038bff4","5e469411432031befaea947c78628abf132a4ad1cb715dc96f741d6370e4ac46","e08dc2d611d7709d14e7e6f9a20754ffcd68e27fd3167478452f767a910188d9","d4834531347055616df4b0393118c612aa0bba125c4d815d592076ebe9c4e5c8","41e48599506894d01c8974ae4b37e5ae89cd630f6550c407457b0381671a1bd1","28a3a0c3b8321f23eceb0cc18287965272a3668dfb7e3616931db5f645cf3e6d","507ed23f7259058415848162fb2d1c88a173ec6d5c3aae2e58ee3ebcaa09ce3f","c147327465a035b4627249c355bd241e017949f8766e97c0d2c6ba5c30009d49","5cdf9f0abb651816bf27dffc7f934a8da7635f0886076b23fbebbe127da2f180","b57db621a6662391fad2667583af66f37183d39b78003d78489d730ba4e2c851","3256b8ac0e96aeafacee33856f42f56347324a8850a7a83626df185291efdb28","055d73a9b0eee13be22cac046d8aa5c132ef7c285cb4d2dd1b3dc3383f217557","e72a0ff240d9377eed2b59c7c9ee0d884f16d2dc3c6b45790361d92f83ba460c","65c402f7b65dad1cf30c293c177ffd9797d54b778cd5108fe66218f6ddaa8573","d5581bd7cf40928ee12ca14a815073618fca54a8c39e2e993dd64eade5fd4c8e","d152321268a5437a8fb6e962ae04b53d13d7f00338c3b1b42ecd505fd96afe94","bc0f24220c09d0af6636babd5d4f318c00ea827f69719bf333ca7ade82010eb0","a29a22cd1ecee2f28e80679fd732fdf9d7d91b65aea71336e32cf0786212dc71","3b483ca52fd51c9ab008c2e45d76f05af4cc58e178d0149344ef3acd079450b1","86092d2b439de38a94bb11c6fc9c3b1a1586161c9230f6e16363238aeef34b70","60d5b08cf3a13a89028167f3005131e9a298c5e2bc2e83e57adfea772aa1f92a","3e67b33f4b9b0effce767fb4f66ed6fca4d3292bd98354385923123f0598f48a","7d78ee4909d4aae35213509d7740ab4eb88b80d0b9d7d8fcefa3f7890b565f36","f4453a9931ca0372e9fc2692787a7e59473b15af2784612732e7e59b51157593","2baf61a0eb2676376845d4dfe010d7a744309f0700646fd224f266cdc6683e77","9f824a3972a5e36c18dff9096f84e7b3448f2e4fb0a670a18df499c31a304a4e","0e94b88790d475889861eb4dad9c6bc4c1e4ce349dc201b63aa407fdeecc0b2d","583c5c0c198f3ed99552abe5570b5a68e2eb46ffa4e8634e757f7f3e8f7ac00a","cd86ca411505562f5bc91de756338fae7981a8787d81c0eed66e53be866659e2","a19312c9c6c655048d667446b3ff69b854d279c34163685488d62cd88ff517c3","12dfadd718a5e19abab16b41dd668ef0a4e3abbfead08f8ce0dad7814fbf114a","16e9ac207619c24d17978aee443a09e52fbcb8a18c76290709db39dadaf4d998","ca0e66104a92c3c385edfdc7c47884c4efd2878c8c5b127fcd68f317d6f5ac4d","75f4ec428d9556ad8eb5252dcc22972b7bf44161d75ff0828e278f8bb8503357","28f4cf0e4d21460274cb85f8bffb7aa86f4b0048f9a194bc714ecb53b61d8811","ea10833fd2ea8b3857da2034a4bd964f849793f47dc46cb343d2690ad4a23cf8","efea2cb7c04b12dc3d678558a81d64f20f0c738f773ee41480790b8682ee280b","4a0968d15c451cf9c441fd35903e2642f96093196dbe8953d2664c5d643822ec","2e20b1c40d6ad9b99e96d96d286d877b644ef2e99d064181f5dd81f8e61540e3","8f2dbfcf703b8fc972c2becd232bf48121c05daedf1c979d712c47f788e98b44","af9edd060ef0fc03f6d82e6ff0e1bcb45de09c558048354b15d07767eee3bd53","4345c45c2ab2ae78224cdff2e3d0088dc57a8cc49271037e9b26afc2c5c9611e","21a78b19d4290b2dfa278ad893ca0b8bc2f6763c9791c1bc6e7179790aecb4a0","a9672437efaed6cf8bf65ea4bf27f4bf044c9945671b7dddfe4d641d8fe7d27d","4d4bcfd062622f0fb4b983c8712ebbc6e6941fd48a97f6f10e7dd8cf605404cc","01ffb10aa10a8a685900e1c1f0063b546998c4ec52da568b4463d896d58e77e1","0a8c058111fb22267a36650e8c1e9b76768a2080ac9b2f8ff973ae6d5da1f7f4","9daa7df3d3078d6931f56db7f0c15ae2f7be8c8f0404b6e51352c7b0f63e141d","909475f5ea428ce4893667056e7a1010edf0b688371555ab27a3d56e8fdba7d3","6ddd66147621beccb38cfd113c577f0425933bd1b91418e0a47770b89de01d06","c4422462b56b8af0817ed577ff204bebe2581417bece2340f027a3661f320191","354440eaa9ca0410894bfe0e8ee387ae91a3cc0a086e3bd5b6af9081b2aea1e9","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","24a09dc3e07d69b0a224dbd14b2994c40d1efd0954e759004b61b9e683dabe5f","aea103394dbd925945ea09d2229c4d6dd543333f9919f12fd14a89b2db376cf3","19911d5024384480bd6e1c33a9729a8bc5af067602a89b42c9a04d61c3a5403a","ff9ba3dd120f14e9890f420e85e7b39c3e1dedeb15df425586ef8d1f72c5aa17","f7933c0e09666eaa6fee3baf5c3516030259ba086fad60d1f60ad40e1acc8526","1b9a40ccb8780e83cf187067a6d976a85cc0d59fcaa10afff62aef2f2fd48ace",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},"d48dc030085d9fac1d7750017461d66aee3c05814121a2b8f1cb4d30afde7ed9","92711a891e73d4fe1aec5bdbb7bd2da6d801c7474c36236ab0e50123f6e7369a","dc53063cd12ab4087214d557ec518a661c19043ebd8a89f933ad7352299d8a08","a064d010c4413651ea096dd08b54e7b4b14d00bd78bd648444b51f6064632c4d",{"version":"cf7fe846d43b6e34d85d28b89cded525283f7334772f190fc3691ca64c939f80","affectsGlobalScope":true},"da11f102e7acc8a2fd0172194adaba0ddc819829cb1de552f99a80b74385a0e8","618ed2f269ee3f7d8d0f57fee4a1c8e3009f80eaace59f1618e8ec05aeffb8f5","e8c3923b65b656012f6e9c704937ebd3848e879b67a0e77f9a2293d697f8ae40","16c2e3d587def2308275b54970d689c24eddef16428a7e33edd850732fbf4579","aef5f73d7b784e3c0dced1628858c34d418a10bf11e0d10ccd90e422797344f4","38fabe2e6f377633d9311d6addb0d373552e4f9ce00dafd9d069abe152c6949f","ed7dc643bd526ba6aa07b0a058f5230909f14df2d1023bb50b1d4ce067701e33","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","063857f728dfa41428c5a9a4a243e6bfb3a9e046916ce0fe9f864da9401c7d2f","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","e1a96135c5a7a9c25eb8c55b4e07313637297489740bd275ee605a300ba84a84","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"63e2182615c513e89bb8a3e749d08f7c379e86490fcdbf6d35f2c14b3507a6e8","affectsGlobalScope":true},{"version":"41071d2f1a39386d10bf36d1ba4712ad42a900047f16a109936df9e48f13673e","affectsGlobalScope":true},"4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","825080a15a8b14b40ac8c7f90c12a5a11efb0b3857dc02195eae2a3dc98aea14",{"version":"5849dc8dc641e09624b923c5efd78206d48903a68944124051d18ae8117cb475","affectsGlobalScope":true},"8f76c6bfb627f38ab44c35d1915dfa2d24d4b96307d9b6cc56df5bba246a3ab6","265aa5dae437b70cc82626488e3e68747e80fddeccc89ef47205b4dcaf864f47","81f6af9b1d8e4f9e3b7318763a1a93f909ee61e0477b41cc7f3281d9da6ca7f4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","5469833e9e4eba5e382f9fad09f48eb2cfd133111694887fbcc120140601310c","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102","cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d","abef3012ae70d98baa449664e9dda50c96fc68b0fd11a592d6590d85bb89cd10","456e83839c811cedebb65c8b05027120336b3bd6920259817d728ffc52d41e2f","ea79d9641e700b2b4a04a857ed1ef692c4caf988017fbabd64c4111f7c287673","0a90b9435b81f45b88c5fb8d30e85b77d3508eb0760dc40b9fb825fd29f92375","8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9","90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","a1d51fd5a8f9c1c038799a43c038397ca3ed99ee73cc0b0aada897e7cc8aca91","6c9708ae545db5f8deb8ef774d412fd1b46adade794664d7c6cfd0a1f6dfd64f","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","67aee88594abc44cd58820dea2ed1a9d373c1c2a59941234e4abe797464bc4da","65d8bfb66a25ff068ea4ce271174b0b4c35aee664b349db941a5688f0e6d621d","f8cb94e0dffd21068a952754ec67d01d35a15fa61bd3af951f949e9b8bde7976","9928c4f48144f7d79716955310c857518d21ada0fcb7017fbf5921e547320cb8","3c7ef314f6691dbba43cb1310a82d610ea648cc4498cd685c3e25442ea2d98a0","2305508907ae4c993dda584411bfedac5821b8a55853caeebf2341f58b2fa027","4bdf362501ecd30c2037b91dda8d091fa2dd9b13990d0718bddb9e02919e35dc","75bdc1b420f0ffc6cc6fd0b6694d89f5072bf755b4e6c7e65a2fda797ca0bb8a","13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","e24b626cf76a7ed81e3f4838e5669b33ecbd173cc1f4d1930b420944650c0a50","b94c7c4635d520f81e511d7e2e96a5acbaa725198071227095a7042f38162cff","6e10a0307d1002477a346fee60420232e318975019abdad108395057d757cbaf","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","6503fb6addf62f9b10f8564d9869ad824565a914ec1ac3dd7d13da14a3f57036","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","391bd2fd4bc5a5f07822a17aeab35dfe90f94f729ae1ae7fc696398ba0ad3fcc","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"b6e8b63e2dec1b6742890259e31b094f8dff3b7558b10735da100ecccb4e07e5","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","0ad2a04de2246300db5468491b6d76f1f8de510822eaa0c89b46ada60f4f2cbe","7c1e19aaac1f980bf5842da2f40b19b50aa5d9429be97384a82219680ef70498","8868835a248a95ee97085831014d989ccfc87c0bc3dcffc2d628809d9648815f","a2f6708415475f137756bd1761d6003d72ed646af52ace1cb4e6f11b34ce2047","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","5bc2e83a413fd0debbe2aadecf5593a21fcb866ecd49920aa7d4d2fa71288e10","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"4a17452616730089378f7018860f0a8db04cb5f2efc6884bebd966da8b0002ab","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"./src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[203,253],[253],[77,253],[49,77,253],[52,79,83,253],[52,253],[52,78,79,80,81,82,253],[52,81,83,253],[208,253],[203,204,205,206,207,253],[203,205,253],[228,253,260,261],[220,253,260],[225,228,252,253,260,264,265,266],[190,253],[253,271],[253,272,273],[253,272],[252,253,260,278],[228,253,260],[228,253],[253,260],[190,253,268],[242,253,260,282,284],[253,289,290],[253,287,288,289],[225,228,253,260,276,277],[253,262,277,278,293],[225,226,253,260,296],[228,230,242,252,253,260],[253,298],[225,228,230,233,242,252,253,260],[253,303],[253,303,304],[253,326],[253,310,313,320,321,322,323],[253,313,316,324],[253,310,313,316,324],[253,310,313,316,320,321,323,324,325],[225,230,253,260,331,332],[225,253,260],[58,60,61,62,63,64,65,66,67,68,69,70,253],[58,59,61,62,63,64,65,66,67,68,69,70,253],[59,60,61,62,63,64,65,66,67,68,69,70,253],[58,59,60,62,63,64,65,66,67,68,69,70,253],[58,59,60,61,63,64,65,66,67,68,69,70,253],[58,59,60,61,62,64,65,66,67,68,69,70,253],[58,59,60,61,62,63,65,66,67,68,69,70,253],[58,59,60,61,62,63,64,66,67,68,69,70,253],[58,59,60,61,62,63,64,65,67,68,69,70,253],[58,59,60,61,62,63,64,65,66,68,69,70,253],[58,59,60,61,62,63,64,65,66,67,69,70,253],[58,59,60,61,62,63,64,65,66,67,68,70,253],[58,59,60,61,62,63,64,65,66,67,68,69,253],[253,355],[253,340],[253,344,345,346],[253,343],[253,345],[253,335,341,342,347,350,352,353,354],[253,342,348,349,355],[253,348,351],[253,342,343,348,355],[253,342,355],[253,336,337,338,339],[228,252,253,260,362,363],[228,242,253,260],[210,253],[213,253],[214,219,253],[215,225,226,233,242,252,253],[215,216,225,233,253],[217,253],[218,219,226,234,253],[219,242,249,253],[220,222,225,233,253],[221,253],[222,223,253],[224,225,253],[225,253],[225,226,227,242,252,253],[225,226,227,242,253],[228,233,242,252,253],[225,226,228,229,233,242,249,252,253],[228,230,242,249,252,253],[210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259],[225,231,253],[232,252,253],[222,225,233,242,253],[234,253],[235,253],[213,236,253],[237,251,253,257],[238,253],[239,253],[225,240,253],[240,241,253,255],[225,242,243,244,253],[242,244,253],[242,243,253],[245,253],[246,253],[225,247,248,253],[247,248,253],[219,233,242,249,253],[250,253],[233,251,253],[214,228,239,252,253],[219,253],[242,253,254],[253,255],[253,256],[214,219,225,227,236,242,252,253,255,257],[242,253,258],[52,253,373],[48,49,50,51,253],[253,377,416],[253,377,401,416],[253,416],[253,377],[253,377,402,416],[253,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415],[253,402,416],[226,253,294],[228,253,260,292],[184,190,253],[183,253],[253,424,425],[253,289,424],[253,289,425],[253,428],[253,260,298],[253,260,298,430],[253,260,434,435,436,437,438,439,440,441,442,443,444],[253,433,434,443],[253,434,443],[253,421,433,434,443],[253,434],[219,253,433,443],[253,433,434,435,436,437,438,439,440,441,442,444],[219,253,260,423,428,429,432,445],[225,228,230,242,249,252,253,258,260],[253,450],[253,307,308],[253,307],[253,306,308,310],[253,307,313,314],[253,306,310,311,312],[253,306,310,313,315],[253,306,310],[253,306],[253,306,307,309],[253,306,307,309,310,311,313,314,315],[125,253],[253,317],[253,316,317,318,319],[44,45,56,88,253],[72,73,253],[50,52,164,195,253],[52,56,57,70,83,92,253],[56,253],[52,92,133,155,164,195,253],[50,52,56,57,83,118,133,154,253],[92,116,195,253],[56,57,115,253],[57,83,115,117,118,155,163,253],[50,156,253],[159,195,253],[158,195,253],[160,195,253],[74,113,253],[156,157,158,159,161,162,253],[56,113,253],[160,253],[57,83,92,113,253],[52,56,57,70,71,74,76,114,116,253],[44,253],[46,253],[44,45,253],[50,52,253],[44,45,46,47,53,54,55,253],[165,253],[75,253],[52,119,253],[52,131,253],[52,56,253],[126,253],[50,253],[122,253],[119,120,121,122,123,124,127,128,129,130,131,132,253],[52,149,253],[149,253],[149,150,151,152,253],[134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,153,253],[181,253],[166,168,169,172,173,174,180,253],[167,168,171,173,174,175,176,177,178,179,253],[169,253],[171,253],[167,168,170,253],[166,253],[173,253],[171,173,174,253],[168,171,172,174,253],[172,174,253],[184,185,186,253],[52,184,185,253],[180,182,187,188,189,191,192,193,194,253],[52,195,253],[84,85,86,87,253],[56,89,90,91,253],[93,253],[100,253],[94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,253]],"referencedMap":[[205,1],[203,2],[78,3],[79,4],[77,2],[117,5],[81,6],[83,7],[80,5],[82,8],[209,9],[208,10],[204,1],[206,11],[207,1],[262,12],[263,13],[267,14],[268,15],[269,15],[190,2],[270,2],[272,16],[274,17],[273,18],[271,2],[275,2],[279,19],[261,20],[280,2],[281,21],[282,22],[283,23],[285,24],[286,2],[291,25],[287,2],[290,26],[289,2],[278,27],[294,28],[295,2],[297,29],[284,30],[299,31],[71,6],[300,2],[265,2],[301,32],[302,2],[303,2],[304,33],[305,34],[327,35],[324,36],[321,37],[322,38],[323,37],[326,39],[325,35],[328,2],[288,2],[329,2],[330,2],[333,40],[332,2],[334,41],[335,2],[59,42],[60,43],[58,44],[61,45],[62,46],[63,47],[64,48],[65,49],[66,50],[67,51],[68,52],[69,53],[70,54],[356,55],[341,56],[347,57],[345,2],[344,58],[346,59],[355,60],[350,61],[352,62],[353,63],[354,64],[348,2],[349,64],[351,64],[343,64],[342,2],[357,2],[358,31],[337,2],[336,2],[339,56],[340,65],[338,56],[292,2],[296,2],[359,2],[360,2],[361,2],[363,2],[364,66],[362,67],[210,68],[211,68],[213,69],[214,70],[215,71],[216,72],[217,73],[218,74],[219,75],[220,76],[221,77],[222,78],[223,78],[224,79],[225,80],[226,81],[227,82],[212,2],[259,2],[228,83],[229,84],[230,85],[260,86],[231,87],[232,88],[233,89],[234,90],[235,91],[236,92],[237,93],[238,94],[239,95],[240,96],[241,97],[242,98],[244,99],[243,100],[245,101],[246,102],[247,103],[248,104],[249,105],[250,106],[251,107],[252,108],[253,109],[254,110],[255,111],[256,112],[257,113],[258,114],[365,2],[366,80],[367,2],[368,2],[369,2],[370,2],[371,2],[50,2],[277,2],[276,2],[372,6],[373,115],[48,2],[52,116],[374,22],[266,67],[375,2],[376,2],[51,2],[401,117],[402,118],[377,119],[380,119],[399,117],[400,117],[390,120],[389,120],[387,117],[382,117],[395,117],[393,117],[397,117],[381,117],[394,117],[398,117],[383,117],[384,117],[396,117],[378,117],[385,117],[386,117],[388,117],[392,117],[403,121],[391,117],[379,117],[416,122],[415,2],[410,121],[412,123],[411,121],[404,121],[405,121],[407,121],[409,121],[413,123],[414,123],[406,123],[408,123],[417,124],[293,125],[418,126],[184,127],[183,2],[419,2],[420,20],[421,2],[422,2],[423,2],[426,128],[425,129],[424,130],[427,2],[429,131],[298,2],[430,132],[431,133],[447,2],[445,134],[444,135],[435,136],[436,137],[437,137],[438,136],[439,136],[440,136],[441,138],[434,139],[442,135],[443,140],[433,2],[446,141],[432,2],[448,2],[449,142],[450,2],[451,143],[309,144],[308,145],[307,146],[315,147],[313,148],[314,149],[311,150],[312,151],[310,152],[316,153],[306,2],[93,2],[49,2],[100,2],[264,80],[331,2],[126,154],[125,2],[317,151],[318,155],[319,2],[320,156],[428,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[42,2],[38,2],[39,2],[40,2],[41,2],[2,2],[1,2],[43,2],[12,2],[11,2],[89,157],[90,157],[72,2],[74,158],[73,2],[196,159],[118,160],[57,161],[197,162],[155,163],[198,164],[199,159],[116,165],[164,166],[157,167],[156,161],[200,168],[201,169],[202,170],[159,171],[163,172],[158,173],[160,2],[161,174],[162,174],[114,175],[115,176],[91,157],[45,177],[44,2],[53,6],[54,6],[47,178],[46,179],[55,180],[56,181],[166,182],[165,2],[75,6],[76,183],[121,6],[120,184],[119,6],[132,185],[131,186],[127,187],[129,188],[130,2],[122,6],[123,189],[128,2],[133,190],[124,2],[135,180],[151,191],[149,6],[150,192],[153,193],[152,6],[134,6],[136,188],[137,6],[138,6],[140,6],[141,186],[142,2],[139,6],[154,194],[143,6],[144,2],[145,2],[146,2],[147,6],[148,6],[182,195],[181,196],[180,197],[170,198],[172,199],[171,200],[178,2],[169,2],[176,2],[167,201],[177,2],[179,2],[174,202],[168,203],[175,204],[173,205],[187,206],[185,6],[186,207],[195,208],[191,15],[192,209],[193,6],[194,2],[188,2],[189,2],[84,179],[85,179],[88,210],[86,179],[87,161],[92,211],[94,212],[111,2],[97,2],[98,2],[99,2],[101,213],[103,2],[102,2],[113,214],[95,2],[104,2],[96,2],[105,2],[106,2],[107,2],[112,2],[108,6],[109,2],[110,2]],"exportedModulesMap":[[205,1],[203,2],[78,3],[79,4],[77,2],[117,5],[81,6],[83,7],[80,5],[82,8],[209,9],[208,10],[204,1],[206,11],[207,1],[262,12],[263,13],[267,14],[268,15],[269,15],[190,2],[270,2],[272,16],[274,17],[273,18],[271,2],[275,2],[279,19],[261,20],[280,2],[281,21],[282,22],[283,23],[285,24],[286,2],[291,25],[287,2],[290,26],[289,2],[278,27],[294,28],[295,2],[297,29],[284,30],[299,31],[71,6],[300,2],[265,2],[301,32],[302,2],[303,2],[304,33],[305,34],[327,35],[324,36],[321,37],[322,38],[323,37],[326,39],[325,35],[328,2],[288,2],[329,2],[330,2],[333,40],[332,2],[334,41],[335,2],[59,42],[60,43],[58,44],[61,45],[62,46],[63,47],[64,48],[65,49],[66,50],[67,51],[68,52],[69,53],[70,54],[356,55],[341,56],[347,57],[345,2],[344,58],[346,59],[355,60],[350,61],[352,62],[353,63],[354,64],[348,2],[349,64],[351,64],[343,64],[342,2],[357,2],[358,31],[337,2],[336,2],[339,56],[340,65],[338,56],[292,2],[296,2],[359,2],[360,2],[361,2],[363,2],[364,66],[362,67],[210,68],[211,68],[213,69],[214,70],[215,71],[216,72],[217,73],[218,74],[219,75],[220,76],[221,77],[222,78],[223,78],[224,79],[225,80],[226,81],[227,82],[212,2],[259,2],[228,83],[229,84],[230,85],[260,86],[231,87],[232,88],[233,89],[234,90],[235,91],[236,92],[237,93],[238,94],[239,95],[240,96],[241,97],[242,98],[244,99],[243,100],[245,101],[246,102],[247,103],[248,104],[249,105],[250,106],[251,107],[252,108],[253,109],[254,110],[255,111],[256,112],[257,113],[258,114],[365,2],[366,80],[367,2],[368,2],[369,2],[370,2],[371,2],[50,2],[277,2],[276,2],[372,6],[373,115],[48,2],[52,116],[374,22],[266,67],[375,2],[376,2],[51,2],[401,117],[402,118],[377,119],[380,119],[399,117],[400,117],[390,120],[389,120],[387,117],[382,117],[395,117],[393,117],[397,117],[381,117],[394,117],[398,117],[383,117],[384,117],[396,117],[378,117],[385,117],[386,117],[388,117],[392,117],[403,121],[391,117],[379,117],[416,122],[415,2],[410,121],[412,123],[411,121],[404,121],[405,121],[407,121],[409,121],[413,123],[414,123],[406,123],[408,123],[417,124],[293,125],[418,126],[184,127],[183,2],[419,2],[420,20],[421,2],[422,2],[423,2],[426,128],[425,129],[424,130],[427,2],[429,131],[298,2],[430,132],[431,133],[447,2],[445,134],[444,135],[435,136],[436,137],[437,137],[438,136],[439,136],[440,136],[441,138],[434,139],[442,135],[443,140],[433,2],[446,141],[432,2],[448,2],[449,142],[450,2],[451,143],[309,144],[308,145],[307,146],[315,147],[313,148],[314,149],[311,150],[312,151],[310,152],[316,153],[306,2],[93,2],[49,2],[100,2],[264,80],[331,2],[126,154],[125,2],[317,151],[318,155],[319,2],[320,156],[428,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[42,2],[38,2],[39,2],[40,2],[41,2],[2,2],[1,2],[43,2],[12,2],[11,2],[89,157],[90,157],[72,2],[74,158],[73,2],[196,159],[118,160],[57,161],[197,162],[155,163],[198,164],[199,159],[116,165],[164,166],[157,167],[156,161],[200,168],[201,169],[202,170],[159,171],[163,172],[158,173],[160,2],[161,174],[162,174],[114,175],[115,176],[91,157],[45,177],[44,2],[53,6],[54,6],[47,178],[46,179],[55,180],[56,181],[166,182],[165,2],[75,6],[76,183],[121,6],[120,184],[119,6],[132,185],[131,186],[127,187],[129,188],[130,2],[122,6],[123,189],[128,2],[133,190],[124,2],[135,180],[151,191],[149,6],[150,192],[153,193],[152,6],[134,6],[136,188],[137,6],[138,6],[140,6],[141,186],[142,2],[139,6],[154,194],[143,6],[144,2],[145,2],[146,2],[147,6],[148,6],[182,195],[181,196],[180,197],[170,198],[172,199],[171,200],[178,2],[169,2],[176,2],[167,201],[177,2],[179,2],[174,202],[168,203],[175,204],[173,205],[187,206],[185,6],[186,207],[195,208],[191,15],[192,209],[193,6],[194,2],[188,2],[189,2],[84,179],[85,179],[88,210],[86,179],[87,161],[92,211],[94,212],[111,2],[97,2],[98,2],[99,2],[101,213],[103,2],[102,2],[113,214],[95,2],[104,2],[96,2],[105,2],[106,2],[107,2],[112,2],[108,6],[109,2],[110,2]],"semanticDiagnosticsPerFile":[205,203,78,79,77,117,81,83,80,82,209,208,204,206,207,262,263,267,268,269,190,270,272,274,273,271,275,279,261,280,281,282,283,285,286,291,287,290,289,278,294,295,297,284,299,71,300,265,301,302,303,304,305,327,324,321,322,323,326,325,328,288,329,330,333,332,334,335,59,60,58,61,62,63,64,65,66,67,68,69,70,356,341,347,345,344,346,355,350,352,353,354,348,349,351,343,342,357,358,337,336,339,340,338,292,296,359,360,361,363,364,362,210,211,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,212,259,228,229,230,260,231,232,233,234,235,236,237,238,239,240,241,242,244,243,245,246,247,248,249,250,251,252,253,254,255,256,257,258,365,366,367,368,369,370,371,50,277,276,372,373,48,52,374,266,375,376,51,401,402,377,380,399,400,390,389,387,382,395,393,397,381,394,398,383,384,396,378,385,386,388,392,403,391,379,416,415,410,412,411,404,405,407,409,413,414,406,408,417,293,418,184,183,419,420,421,422,423,426,425,424,427,429,298,430,431,447,445,444,435,436,437,438,439,440,441,434,442,443,433,446,432,448,449,450,451,309,308,307,315,313,314,311,312,310,316,306,93,49,100,264,331,126,125,317,318,319,320,428,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,42,38,39,40,41,2,1,43,12,11,89,90,72,74,73,196,118,57,197,155,198,199,116,164,157,156,200,201,202,159,163,158,160,161,162,114,115,91,45,44,53,54,47,46,55,56,166,165,75,76,121,120,119,132,131,127,129,130,122,123,128,133,124,135,151,149,150,153,152,134,136,137,138,140,141,142,139,154,143,144,145,146,147,148,182,181,180,170,172,171,178,169,176,167,177,179,174,168,175,173,187,185,186,195,191,192,193,194,188,189,84,85,88,86,87,92,94,111,97,98,99,101,103,102,113,95,104,96,105,106,107,112,108,109,110]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.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.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.esnext.intl.d.ts","../shared-types/types/Colors.d.ts","../shared-types/types/BaseTheme.d.ts","../shared-types/types/ComponentThemeVariables.d.ts","../shared-types/types/ComponentThemeMap.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","../shared-types/types/CommonProps.d.ts","../shared-types/types/CommonTypes.d.ts","../shared-types/types/UtilityTypes.d.ts","../shared-types/types/index.d.ts","./src/EmotionTypes.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/hoist-non-react-statics/index.d.ts","../console/types/console.d.ts","../console/types/macro.d.ts","../console/types/index.d.ts","../ui-decorator/types/decorator.d.ts","../ui-decorator/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/utils/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/cache/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/serialize/types/index.d.ts","../../node_modules/@emotion/react/types/jsx-namespace.d.ts","../../node_modules/@emotion/react/types/helper.d.ts","../../node_modules/@emotion/react/types/theming.d.ts","../../node_modules/@emotion/react/types/index.d.ts","../ui-theme-tokens/types/canvas/index.d.ts","../ui-theme-tokens/types/canvasHighContrast/index.d.ts","../ui-theme-tokens/types/instructure/index.d.ts","../ui-theme-tokens/types/utils/functionalColors.d.ts","../ui-theme-tokens/types/index.d.ts","../canvas-high-contrast-theme/types/index.d.ts","../canvas-theme/types/index.d.ts","../instructure-theme/types/index.d.ts","../ui-themes/types/index.d.ts","../../node_modules/bowser/typings.d.ts","../ui-utils/types/Browser.d.ts","../ui-utils/types/isEdge.d.ts","../ui-utils/types/isIE11.d.ts","../ui-utils/types/capitalizeFirstLetter.d.ts","../ui-utils/types/cloneArray.d.ts","../ui-utils/types/createChainedFunction.d.ts","../../node_modules/fast-deep-equal/index.d.ts","../ui-utils/types/deepEqual.d.ts","../ui-utils/types/hash.d.ts","../ui-utils/types/generateId.d.ts","../ui-utils/types/isEmpty.d.ts","../ui-utils/types/mergeDeep.d.ts","../ui-utils/types/ms.d.ts","../ui-utils/types/parseUnit.d.ts","../ui-utils/types/px.d.ts","../ui-utils/types/shallowEqual.d.ts","../ui-utils/types/within.d.ts","../ui-utils/types/camelize.d.ts","../ui-utils/types/pascalize.d.ts","../ui-utils/types/index.d.ts","./src/useTheme.ts","./src/withStyle.tsx","./src/getComponentThemeOverride.ts","../../node_modules/@emotion/react/types/css-prop.d.ts","./src/EmotionThemeProvider/index.tsx","../ui-i18n/types/ApplyLocale/props.d.ts","../ui-i18n/types/ApplyLocale/index.d.ts","../ui-i18n/types/ApplyLocale/ApplyLocaleContext.d.ts","../ui-i18n/types/TextDirectionContext.d.ts","../ui-i18n/types/bidirectional.d.ts","../ui-i18n/types/textDirectionContextConsumer.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/moment-timezone/index.d.ts","../ui-i18n/types/DateTime.d.ts","../ui-i18n/types/getTextDirection.d.ts","../ui-i18n/types/I18nPropTypes.d.ts","../ui-i18n/types/Locale.d.ts","../ui-i18n/types/ApplyTextDirection/props.d.ts","../ui-i18n/types/ApplyTextDirection/index.d.ts","../ui-i18n/types/index.d.ts","../ui-react-utils/types/callRenderProp.d.ts","../ui-react-utils/types/ComponentIdentifier.d.ts","../ui-react-utils/types/deprecated.d.ts","../ui-react-utils/types/ensureSingleChild.d.ts","../ui-react-utils/types/experimental.d.ts","../ui-react-utils/types/hack.d.ts","../ui-react-utils/types/getDisplayName.d.ts","../ui-react-utils/types/getElementType.d.ts","../ui-react-utils/types/getInteraction.d.ts","../ui-react-utils/types/matchComponentTypes.d.ts","../ui-react-utils/types/omitProps.d.ts","../ui-react-utils/types/passthroughProps.d.ts","../ui-react-utils/types/pickProps.d.ts","../ui-react-utils/types/safeCloneElement.d.ts","../ui-react-utils/types/windowMessageListener.d.ts","../ui-react-utils/types/DeterministicIdContext/DeterministicIdContextProvider.d.ts","../ui-react-utils/types/DeterministicIdContext/generateInstanceCounterMap.d.ts","../ui-react-utils/types/DeterministicIdContext/DeterministicIdContext.d.ts","../ui-react-utils/types/DeterministicIdContext/withDeterministicId.d.ts","../ui-react-utils/types/DeterministicIdContext/index.d.ts","../ui-react-utils/types/index.d.ts","./src/InstUISettingsProvider/index.tsx","./src/styleUtils/ThemeablePropValues.ts","./src/styleUtils/ThemeablePropTypes.ts","./src/styleUtils/makeThemeVars.ts","./src/styleUtils/getShorthandPropValue.ts","./src/styleUtils/mirrorShorthand.ts","./src/styleUtils/mirrorShorthandCorners.ts","./src/styleUtils/mirrorShorthandEdges.ts","./src/styleUtils/index.ts","./src/index.ts","../ui-axe-check/types/runAxeCheck.d.ts","../ui-axe-check/types/index.d.ts","../ui-test-queries/types/utils/helpers.d.ts","../ui-test-queries/types/utils/queries.d.ts","../ui-test-queries/types/utils/events.d.ts","../ui-test-queries/types/utils/bindElementToEvents.d.ts","../ui-test-queries/types/utils/bindElementToUtilities.d.ts","../ui-test-queries/types/utils/bindElementToMethods.d.ts","../ui-test-queries/types/utils/selectors.d.ts","../ui-test-queries/types/utils/parseQueryArguments.d.ts","../ui-test-queries/types/utils/queryResult.d.ts","../ui-test-queries/types/utils/firstOrNull.d.ts","../ui-test-queries/types/utils/isElement.d.ts","../ui-test-queries/types/utils/elementToString.d.ts","../ui-test-queries/types/utils/matchers.d.ts","../ui-test-queries/types/index.d.ts","../ui-test-locator/types/utils/locator.d.ts","../ui-test-locator/types/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sinon/index.d.ts","../ui-test-sandbox/types/utils/reactComponentWrapper.d.ts","../ui-test-sandbox/types/utils/sandbox.d.ts","../ui-test-sandbox/types/index.d.ts","../ui-test-utils/types/utils/shims.d.ts","../ui-test-utils/types/utils/waitForExpect.d.ts","../../node_modules/@types/chai/index.d.ts","../ui-test-utils/types/utils/expect.d.ts","../ui-test-utils/types/utils/generateA11yTests.d.ts","../ui-test-utils/types/utils/generateComponentExamples.d.ts","../ui-test-utils/types/utils/generatePropCombinations.d.ts","../ui-test-utils/types/index.d.ts","./src/EmotionThemeProvider/__tests__/EmotionThemeProvider.test.tsx","./src/InstUISettingsProvider/__tests__/InstUISettingProvider.test.tsx","./src/__tests__/getComponentThemeOverride.test.ts","./src/__tests__/withStyle.test.tsx","./src/styleUtils/__tests__/getShorthandPropValue.test.ts","./src/styleUtils/__tests__/makeThemeVars.test.ts","./src/styleUtils/__tests__/mirrorShorthand.test.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/babel-plugin-macros/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.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/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/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/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/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/bonjour/index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/chai-string/index.d.ts","../../node_modules/@types/codemirror/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/component-emitter/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/decompress/index.d.ts","../../node_modules/@types/dirty-chai/index.d.ts","../../node_modules/@types/got/index.d.ts","../../node_modules/@types/download/index.d.ts","../../node_modules/@types/escape-html/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/git-url-parse/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/ast-types/types.d.ts","../../node_modules/ast-types/gen/namedTypes.d.ts","../../node_modules/ast-types/gen/kinds.d.ts","../../node_modules/ast-types/gen/builders.d.ts","../../node_modules/ast-types/lib/types.d.ts","../../node_modules/ast-types/lib/path.d.ts","../../node_modules/ast-types/lib/scope.d.ts","../../node_modules/ast-types/lib/node-path.d.ts","../../node_modules/ast-types/lib/path-visitor.d.ts","../../node_modules/ast-types/gen/visitor.d.ts","../../node_modules/ast-types/main.d.ts","../../node_modules/recast/lib/options.d.ts","../../node_modules/recast/lib/parser.d.ts","../../node_modules/recast/lib/printer.d.ts","../../node_modules/recast/main.d.ts","../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts","../../node_modules/@types/jscodeshift/src/collections/Node.d.ts","../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts","../../node_modules/@types/jscodeshift/src/Collection.d.ts","../../node_modules/@types/jscodeshift/src/template.d.ts","../../node_modules/@types/jscodeshift/src/core.d.ts","../../node_modules/@types/jscodeshift/index.d.ts","../../node_modules/@types/json-buffer/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/log4js/types/log4js.d.ts","../../node_modules/@types/karma/lib/constants.d.ts","../../node_modules/@types/karma/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/linkify-it/index.d.ts","../../node_modules/@types/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../node_modules/@types/markdown-it/lib/token.d.ts","../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../node_modules/@types/markdown-it/lib/index.d.ts","../../node_modules/@types/markdown-it/index.d.ts","../../node_modules/@types/marked/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/no-scroll/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/serve-index/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/sizzle/index.d.ts","../../node_modules/@types/sockjs/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/tern/lib/tern/index.d.ts","../../node_modules/@types/tern/lib/infer/index.d.ts","../../node_modules/@types/tern/index.d.ts","../../node_modules/@types/tinycolor2/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/@types/vfile-message/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/webpack/node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/which/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","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":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"4e720504aef76fbcee2d511d7787073c4b596572885571e31c00ce7c73246d41","22059a0bc69fbf547d07b7fdcc1acce72494c588d66f785a6d73862c96eff4eb","17e04c4cbcdfd0158af2993d6ce4fc12ba9f1d6ce77d5bcef2d94778dbcaa02b","c383e81ebc770b74246a994f6adeaa225b6cbefbb2295deb268ec6c291e89ee8",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ce4e9cdf1ec90f3d435a4df18342b187805924f6046e872e76d3c1659ad545ff","affectsGlobalScope":true},"3a3ae5156325111e8708edd12384166c6a96faed172ae3f13705e64c13edbefc","ee4048f67913509fc0e1b0386362b66c23053f24a4a68b2f97c78939ec349243","f19df57b67f722244517dbc9251a4ef69602d8caab008940eef053da1e6f02fd","29eeacf8cd001a5a4eb5b69e8ebfbc355f292183aedb1cc4436fe95d2640005b","968e2613060b8a248f31091390ef658875a7d479e0d60fda5f132e854cfd5709","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","096aa55b256f3d96a01ff91cf1248cbc462597aaffba4de3037dc16677c9dc35","d5dc194a79159a5811c99c13c26db7e0377bc8d51022f7897e03528f7b905305","22916c51ce55bcb3498785c4c3fe9490c9376e4bf0f8cc46fcf1cc75ebacac87","14bd133a159623592d94a00d1acb4d7ee5e467311b72172bcdd3ef60dca0a321","65e9ad7a76bc1bc1642052b3c4c00b2cae741fc15cb43a482ea8cba60b361b74","531cd80e4dba2620d86844a50e7d21b89436e56a14e66d6774e99b3759ac69ad","03d59e612afdc3039a83b12d45b026306b291cfc8e2fc72859f7902b8a857caf","93b24ca76698e62732d72800da132367639a4426363c821338bbbd7cf6b64443","ecfa9ce3a5a37d15b813065e8a7cdf677a0f493018e47ce59815443dfbb9c910","83e56d3337e1a6dbafdbe5a2502a84c330b1a328ed2860d689b2ded82b1f5c95","e630f8a3c49d5db0a8af774799abdb8f19675b940a6cfa25eca35e5280709f28","909bac92983e542dd29efcf9eedf4ab5a330767c70c505a52326f7f5ee4b288d","551058a5d20411e41194e2f1f0b80dfc4f04840b718c3177237e8d3d6a918dcc","0ccb2c677269948b614113fc10f9442ed70e01946a541aa94059332b1d034fa0","a13e8ae38660d8e2d7b6205596051a24348e9475f0c051d76b4db38ebc636bbc","76bf634dfa47ecbcd4a898d62b1d431e2d341f12ca8ddd3495952f80fb677cfc","299963068e45d834423662dbff5613f892787b466a2b2740580228ad64a1575a","84f86cb3f40cb9f7a56bcb5bd7bd95bd34f9c7208d054896c2c1f674cb66f9e9","461f89173b246adca5746f774f6120e728483920ff9d77230444fb39dc919770","344b5e510f5bb707233e9b38159297fbf8f45d5cf82d62bae57ca69a3e100486","cd2add8f15c675e3dacac1c8f56b5a869524e9f1a3fba303202ab029136941a7","56013b9deaf9151ea56e2be2d8e2bbd761782f79c45d9e7ce7876f81a500807b","7f76d3bf08a646663ba42ee0c6e2a142ba3b05fc33c9f14fd9c58818c2ff33f4","0a809c5c2f05dc430a78528bf58c9c17b51b24d67e9078f731e1547ae7e79f8a","7af1695141ea7e9511eef0e4965385e17eac8c048662edc2986e064cfa7d5460","653f8d7633aad7eb2072f44b43da1f61c2535c778568e627e0f7af9eff9acb07","6156ccb63064dcbc53051479128854f34dc19ff52594314c498ebc4d771d5aa9","97e66f905c6fa7981e52911fa75f3f6b25e32f2c2efde740d8a10c5c9c6a8a33","37ffe3c12813b6a6d512f7c27b71f3388d03dafa10555ad5094cea393ed3d1f6","9a289f835e173c081f5d1594172daac61ebb66e9c5fbb83b0e51aa6f9481d0d6","33eafaeb29f553f65bd21f8e22499061837ba627df701d88beddda2b4216ec52","ddcfceb985d43240e3779240df8fffa7e00fd6fb06d367798d9677bb37e9bf20","2ec4d47bce397037d3fb79f5ad1bf77e6c3fd7d06701407d48dad67ffbeb3c7b","77af8eede757d9024fe38c9a3474894ffe63cce790b14f5d0982ea44c572edec","5afe439c268da5c8ecbce7114aa525661337623c409dcab9eb1ed1e68fd67a3f","d8d64906e098a5791cd6ade7191815e32852929a164cbbf3243a79e9f6194649","e55d4b06351decc15e5c80bca7549269dc8032f559bba536bc71d8b83639fe1f","87faa682a93cfd5edd17ed848505634958a3ec2a80e2f368a5bce0e92271d631","d09c868c2d8e27e71177aef6472e1f73d33b9d6f60fe8e62aff9db578b076495","5a27cfefaf22bf2e090933efc5a1000d4d3bd8aaff65811514b4681e0d52d192","d1136f37111f18b004dd7dfb7fc1d427f3ff4e68c139116bf3201b4fb6526cb1","4e5aadaf107848dc1fbd38cd1843eff3b77b7e448b72b6491979dac01e5a9670","bdbf79106ee9a21ab8557e4e45175320513c5b11f2362a37b14384035135da4d","22388e097780e82e2ca6140083d09e19f767b51eb6f3803534f9eb4f5335904d","0789c1fae5b8decf739e65ba32a400698b274dc88f00c77c10cb0ced53b277db","91813cab02c60e7be541f2e08fc06ae817b408dd3bf6d53c6380e5369d412b96","1fd9317d680e7565dbbf35d33aaf08e5d9a0472f2b5c649dd3c7015ae184bf6b","1038130a43b38c3293ade1688878a8160347c1423b49bb3d65d2f4733efea753","2e955a85ad4a5f0daedeeaccdb7f18d39d557913f8aed2407ec0e1788dfb4e22","f9f5b02b40d2c75824c0723d089da0a621c55cf7340e96ddc1c66d3c3fe5938f","00804db6018b756bfa5681d70b4b668186927c20a3a7998209d5d769ce875988","9259cd3205f2ef14c772ecfc237aa5891cb4fcf107c8f2758519b9c834ebe861","47c3e00e515e78f253e3b3dec62e3edc56c3853b73bb2d31d0b1f0c2f89195a5","4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","3ff27a264325767dd546133238d968f649d1376dc119e790fcd1a25661685de7","a5410df44597620dea3fd0de562bcf463b1c5a3ab2805aeb519850810a0f8b79","23476e5308473228ced4404c49e1db9ca85a299211a9d0b39fbf69a3eef74cac","d316bac8af1a0a8ad096d567ff1ffedd7487cd3430aa44d057eb4debf64b36f0","401e7185d7ce3c4377ac70f7300c725392a8302553021c60e1ae6f9ad1363812","9089cd2d76d87d308baa2375ce0b241295ea2bfaf641e12c874e84c6b038bff4","5e469411432031befaea947c78628abf132a4ad1cb715dc96f741d6370e4ac46","e08dc2d611d7709d14e7e6f9a20754ffcd68e27fd3167478452f767a910188d9","d4834531347055616df4b0393118c612aa0bba125c4d815d592076ebe9c4e5c8","41e48599506894d01c8974ae4b37e5ae89cd630f6550c407457b0381671a1bd1","28a3a0c3b8321f23eceb0cc18287965272a3668dfb7e3616931db5f645cf3e6d","507ed23f7259058415848162fb2d1c88a173ec6d5c3aae2e58ee3ebcaa09ce3f","c147327465a035b4627249c355bd241e017949f8766e97c0d2c6ba5c30009d49","5cdf9f0abb651816bf27dffc7f934a8da7635f0886076b23fbebbe127da2f180","b57db621a6662391fad2667583af66f37183d39b78003d78489d730ba4e2c851","3256b8ac0e96aeafacee33856f42f56347324a8850a7a83626df185291efdb28","055d73a9b0eee13be22cac046d8aa5c132ef7c285cb4d2dd1b3dc3383f217557","e72a0ff240d9377eed2b59c7c9ee0d884f16d2dc3c6b45790361d92f83ba460c","65c402f7b65dad1cf30c293c177ffd9797d54b778cd5108fe66218f6ddaa8573","d5581bd7cf40928ee12ca14a815073618fca54a8c39e2e993dd64eade5fd4c8e","d152321268a5437a8fb6e962ae04b53d13d7f00338c3b1b42ecd505fd96afe94","bc0f24220c09d0af6636babd5d4f318c00ea827f69719bf333ca7ade82010eb0","a29a22cd1ecee2f28e80679fd732fdf9d7d91b65aea71336e32cf0786212dc71","3b483ca52fd51c9ab008c2e45d76f05af4cc58e178d0149344ef3acd079450b1","86092d2b439de38a94bb11c6fc9c3b1a1586161c9230f6e16363238aeef34b70","60d5b08cf3a13a89028167f3005131e9a298c5e2bc2e83e57adfea772aa1f92a","3e67b33f4b9b0effce767fb4f66ed6fca4d3292bd98354385923123f0598f48a","7d78ee4909d4aae35213509d7740ab4eb88b80d0b9d7d8fcefa3f7890b565f36","f4453a9931ca0372e9fc2692787a7e59473b15af2784612732e7e59b51157593","ebd48cf717e5b378d97c52f33f97c9c75ef2a5e2b122faa4be9a60e3f0fa3f20","9f824a3972a5e36c18dff9096f84e7b3448f2e4fb0a670a18df499c31a304a4e","0e94b88790d475889861eb4dad9c6bc4c1e4ce349dc201b63aa407fdeecc0b2d","583c5c0c198f3ed99552abe5570b5a68e2eb46ffa4e8634e757f7f3e8f7ac00a","cd86ca411505562f5bc91de756338fae7981a8787d81c0eed66e53be866659e2","a19312c9c6c655048d667446b3ff69b854d279c34163685488d62cd88ff517c3","12dfadd718a5e19abab16b41dd668ef0a4e3abbfead08f8ce0dad7814fbf114a","16e9ac207619c24d17978aee443a09e52fbcb8a18c76290709db39dadaf4d998","ca0e66104a92c3c385edfdc7c47884c4efd2878c8c5b127fcd68f317d6f5ac4d","75f4ec428d9556ad8eb5252dcc22972b7bf44161d75ff0828e278f8bb8503357","28f4cf0e4d21460274cb85f8bffb7aa86f4b0048f9a194bc714ecb53b61d8811","ea10833fd2ea8b3857da2034a4bd964f849793f47dc46cb343d2690ad4a23cf8","efea2cb7c04b12dc3d678558a81d64f20f0c738f773ee41480790b8682ee280b","4a0968d15c451cf9c441fd35903e2642f96093196dbe8953d2664c5d643822ec","2e20b1c40d6ad9b99e96d96d286d877b644ef2e99d064181f5dd81f8e61540e3","8f2dbfcf703b8fc972c2becd232bf48121c05daedf1c979d712c47f788e98b44","af9edd060ef0fc03f6d82e6ff0e1bcb45de09c558048354b15d07767eee3bd53","4345c45c2ab2ae78224cdff2e3d0088dc57a8cc49271037e9b26afc2c5c9611e","21a78b19d4290b2dfa278ad893ca0b8bc2f6763c9791c1bc6e7179790aecb4a0","a9672437efaed6cf8bf65ea4bf27f4bf044c9945671b7dddfe4d641d8fe7d27d","4d4bcfd062622f0fb4b983c8712ebbc6e6941fd48a97f6f10e7dd8cf605404cc","01ffb10aa10a8a685900e1c1f0063b546998c4ec52da568b4463d896d58e77e1","0a8c058111fb22267a36650e8c1e9b76768a2080ac9b2f8ff973ae6d5da1f7f4","9daa7df3d3078d6931f56db7f0c15ae2f7be8c8f0404b6e51352c7b0f63e141d","909475f5ea428ce4893667056e7a1010edf0b688371555ab27a3d56e8fdba7d3","6ddd66147621beccb38cfd113c577f0425933bd1b91418e0a47770b89de01d06","c4422462b56b8af0817ed577ff204bebe2581417bece2340f027a3661f320191","354440eaa9ca0410894bfe0e8ee387ae91a3cc0a086e3bd5b6af9081b2aea1e9","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","24a09dc3e07d69b0a224dbd14b2994c40d1efd0954e759004b61b9e683dabe5f","aea103394dbd925945ea09d2229c4d6dd543333f9919f12fd14a89b2db376cf3","19911d5024384480bd6e1c33a9729a8bc5af067602a89b42c9a04d61c3a5403a","ff9ba3dd120f14e9890f420e85e7b39c3e1dedeb15df425586ef8d1f72c5aa17","f7933c0e09666eaa6fee3baf5c3516030259ba086fad60d1f60ad40e1acc8526","1b9a40ccb8780e83cf187067a6d976a85cc0d59fcaa10afff62aef2f2fd48ace",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},"d48dc030085d9fac1d7750017461d66aee3c05814121a2b8f1cb4d30afde7ed9","92711a891e73d4fe1aec5bdbb7bd2da6d801c7474c36236ab0e50123f6e7369a","dc53063cd12ab4087214d557ec518a661c19043ebd8a89f933ad7352299d8a08","a064d010c4413651ea096dd08b54e7b4b14d00bd78bd648444b51f6064632c4d",{"version":"cf7fe846d43b6e34d85d28b89cded525283f7334772f190fc3691ca64c939f80","affectsGlobalScope":true},"da11f102e7acc8a2fd0172194adaba0ddc819829cb1de552f99a80b74385a0e8","618ed2f269ee3f7d8d0f57fee4a1c8e3009f80eaace59f1618e8ec05aeffb8f5","e8c3923b65b656012f6e9c704937ebd3848e879b67a0e77f9a2293d697f8ae40","16c2e3d587def2308275b54970d689c24eddef16428a7e33edd850732fbf4579","aef5f73d7b784e3c0dced1628858c34d418a10bf11e0d10ccd90e422797344f4","38fabe2e6f377633d9311d6addb0d373552e4f9ce00dafd9d069abe152c6949f","ed7dc643bd526ba6aa07b0a058f5230909f14df2d1023bb50b1d4ce067701e33","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","063857f728dfa41428c5a9a4a243e6bfb3a9e046916ce0fe9f864da9401c7d2f","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","e1a96135c5a7a9c25eb8c55b4e07313637297489740bd275ee605a300ba84a84","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"63e2182615c513e89bb8a3e749d08f7c379e86490fcdbf6d35f2c14b3507a6e8","affectsGlobalScope":true},{"version":"41071d2f1a39386d10bf36d1ba4712ad42a900047f16a109936df9e48f13673e","affectsGlobalScope":true},"4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","825080a15a8b14b40ac8c7f90c12a5a11efb0b3857dc02195eae2a3dc98aea14",{"version":"5849dc8dc641e09624b923c5efd78206d48903a68944124051d18ae8117cb475","affectsGlobalScope":true},"8f76c6bfb627f38ab44c35d1915dfa2d24d4b96307d9b6cc56df5bba246a3ab6","265aa5dae437b70cc82626488e3e68747e80fddeccc89ef47205b4dcaf864f47","81f6af9b1d8e4f9e3b7318763a1a93f909ee61e0477b41cc7f3281d9da6ca7f4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","5469833e9e4eba5e382f9fad09f48eb2cfd133111694887fbcc120140601310c","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102","cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d","abef3012ae70d98baa449664e9dda50c96fc68b0fd11a592d6590d85bb89cd10","456e83839c811cedebb65c8b05027120336b3bd6920259817d728ffc52d41e2f","ea79d9641e700b2b4a04a857ed1ef692c4caf988017fbabd64c4111f7c287673","0a90b9435b81f45b88c5fb8d30e85b77d3508eb0760dc40b9fb825fd29f92375","8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9","90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","a1d51fd5a8f9c1c038799a43c038397ca3ed99ee73cc0b0aada897e7cc8aca91","6c9708ae545db5f8deb8ef774d412fd1b46adade794664d7c6cfd0a1f6dfd64f","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","67aee88594abc44cd58820dea2ed1a9d373c1c2a59941234e4abe797464bc4da","65d8bfb66a25ff068ea4ce271174b0b4c35aee664b349db941a5688f0e6d621d","f8cb94e0dffd21068a952754ec67d01d35a15fa61bd3af951f949e9b8bde7976","9928c4f48144f7d79716955310c857518d21ada0fcb7017fbf5921e547320cb8","3c7ef314f6691dbba43cb1310a82d610ea648cc4498cd685c3e25442ea2d98a0","2305508907ae4c993dda584411bfedac5821b8a55853caeebf2341f58b2fa027","4bdf362501ecd30c2037b91dda8d091fa2dd9b13990d0718bddb9e02919e35dc","75bdc1b420f0ffc6cc6fd0b6694d89f5072bf755b4e6c7e65a2fda797ca0bb8a","13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","e24b626cf76a7ed81e3f4838e5669b33ecbd173cc1f4d1930b420944650c0a50","b94c7c4635d520f81e511d7e2e96a5acbaa725198071227095a7042f38162cff","6e10a0307d1002477a346fee60420232e318975019abdad108395057d757cbaf","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","6503fb6addf62f9b10f8564d9869ad824565a914ec1ac3dd7d13da14a3f57036","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","391bd2fd4bc5a5f07822a17aeab35dfe90f94f729ae1ae7fc696398ba0ad3fcc","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"b6e8b63e2dec1b6742890259e31b094f8dff3b7558b10735da100ecccb4e07e5","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","0ad2a04de2246300db5468491b6d76f1f8de510822eaa0c89b46ada60f4f2cbe","7c1e19aaac1f980bf5842da2f40b19b50aa5d9429be97384a82219680ef70498","8868835a248a95ee97085831014d989ccfc87c0bc3dcffc2d628809d9648815f","a2f6708415475f137756bd1761d6003d72ed646af52ace1cb4e6f11b34ce2047","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","5bc2e83a413fd0debbe2aadecf5593a21fcb866ecd49920aa7d4d2fa71288e10","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"4a17452616730089378f7018860f0a8db04cb5f2efc6884bebd966da8b0002ab","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"./src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[203,253],[253],[77,253],[49,77,253],[52,79,83,253],[52,253],[52,78,79,80,81,82,253],[52,81,83,253],[208,253],[203,204,205,206,207,253],[203,205,253],[228,253,260,261],[220,253,260],[225,228,252,253,260,264,265,266],[190,253],[253,271],[253,272,273],[253,272],[252,253,260,278],[228,253,260],[228,253],[253,260],[190,253,268],[242,253,260,282,284],[253,289,290],[253,287,288,289],[225,228,253,260,276,277],[253,262,277,278,293],[225,226,253,260,296],[228,230,242,252,253,260],[253,298],[225,228,230,233,242,252,253,260],[253,303],[253,303,304],[253,326],[253,310,313,320,321,322,323],[253,313,316,324],[253,310,313,316,324],[253,310,313,316,320,321,323,324,325],[225,230,253,260,331,332],[225,253,260],[58,60,61,62,63,64,65,66,67,68,69,70,253],[58,59,61,62,63,64,65,66,67,68,69,70,253],[59,60,61,62,63,64,65,66,67,68,69,70,253],[58,59,60,62,63,64,65,66,67,68,69,70,253],[58,59,60,61,63,64,65,66,67,68,69,70,253],[58,59,60,61,62,64,65,66,67,68,69,70,253],[58,59,60,61,62,63,65,66,67,68,69,70,253],[58,59,60,61,62,63,64,66,67,68,69,70,253],[58,59,60,61,62,63,64,65,67,68,69,70,253],[58,59,60,61,62,63,64,65,66,68,69,70,253],[58,59,60,61,62,63,64,65,66,67,69,70,253],[58,59,60,61,62,63,64,65,66,67,68,70,253],[58,59,60,61,62,63,64,65,66,67,68,69,253],[253,355],[253,340],[253,344,345,346],[253,343],[253,345],[253,335,341,342,347,350,352,353,354],[253,342,348,349,355],[253,348,351],[253,342,343,348,355],[253,342,355],[253,336,337,338,339],[228,252,253,260,362,363],[228,242,253,260],[210,253],[213,253],[214,219,253],[215,225,226,233,242,252,253],[215,216,225,233,253],[217,253],[218,219,226,234,253],[219,242,249,253],[220,222,225,233,253],[221,253],[222,223,253],[224,225,253],[225,253],[225,226,227,242,252,253],[225,226,227,242,253],[228,233,242,252,253],[225,226,228,229,233,242,249,252,253],[228,230,242,249,252,253],[210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259],[225,231,253],[232,252,253],[222,225,233,242,253],[234,253],[235,253],[213,236,253],[237,251,253,257],[238,253],[239,253],[225,240,253],[240,241,253,255],[225,242,243,244,253],[242,244,253],[242,243,253],[245,253],[246,253],[225,247,248,253],[247,248,253],[219,233,242,249,253],[250,253],[233,251,253],[214,228,239,252,253],[219,253],[242,253,254],[253,255],[253,256],[214,219,225,227,236,242,252,253,255,257],[242,253,258],[52,253,373],[48,49,50,51,253],[253,377,416],[253,377,401,416],[253,416],[253,377],[253,377,402,416],[253,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415],[253,402,416],[226,253,294],[228,253,260,292],[184,190,253],[183,253],[253,424,425],[253,289,424],[253,289,425],[253,428],[253,260,298],[253,260,298,430],[253,260,434,435,436,437,438,439,440,441,442,443,444],[253,433,434,443],[253,434,443],[253,421,433,434,443],[253,434],[219,253,433,443],[253,433,434,435,436,437,438,439,440,441,442,444],[219,253,260,423,428,429,432,445],[225,228,230,242,249,252,253,258,260],[253,450],[253,307,308],[253,307],[253,306,308,310],[253,307,313,314],[253,306,310,311,312],[253,306,310,313,315],[253,306,310],[253,306],[253,306,307,309],[253,306,307,309,310,311,313,314,315],[125,253],[253,317],[253,316,317,318,319],[44,45,56,88,253],[72,73,253],[50,52,164,195,253],[52,56,57,70,83,92,253],[56,253],[52,92,133,155,164,195,253],[50,52,56,57,83,118,133,154,253],[92,116,195,253],[56,57,115,253],[57,83,115,117,118,155,163,253],[50,156,253],[159,195,253],[158,195,253],[160,195,253],[74,113,253],[156,157,158,159,161,162,253],[56,113,253],[160,253],[57,83,92,113,253],[52,56,57,70,71,74,76,114,116,253],[44,253],[46,253],[44,45,253],[50,52,253],[44,45,46,47,53,54,55,253],[165,253],[75,253],[52,119,253],[52,131,253],[52,56,253],[126,253],[50,253],[122,253],[119,120,121,122,123,124,127,128,129,130,131,132,253],[52,149,253],[149,253],[149,150,151,152,253],[134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,153,253],[181,253],[166,168,169,172,173,174,180,253],[167,168,171,173,174,175,176,177,178,179,253],[169,253],[171,253],[167,168,170,253],[166,253],[173,253],[171,173,174,253],[168,171,172,174,253],[172,174,253],[184,185,186,253],[52,184,185,253],[180,182,187,188,189,191,192,193,194,253],[52,195,253],[84,85,86,87,253],[56,89,90,91,253],[93,253],[100,253],[94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,253]],"referencedMap":[[205,1],[203,2],[78,3],[79,4],[77,2],[117,5],[81,6],[83,7],[80,5],[82,8],[209,9],[208,10],[204,1],[206,11],[207,1],[262,12],[263,13],[267,14],[268,15],[269,15],[190,2],[270,2],[272,16],[274,17],[273,18],[271,2],[275,2],[279,19],[261,20],[280,2],[281,21],[282,22],[283,23],[285,24],[286,2],[291,25],[287,2],[290,26],[289,2],[278,27],[294,28],[295,2],[297,29],[284,30],[299,31],[71,6],[300,2],[265,2],[301,32],[302,2],[303,2],[304,33],[305,34],[327,35],[324,36],[321,37],[322,38],[323,37],[326,39],[325,35],[328,2],[288,2],[329,2],[330,2],[333,40],[332,2],[334,41],[335,2],[59,42],[60,43],[58,44],[61,45],[62,46],[63,47],[64,48],[65,49],[66,50],[67,51],[68,52],[69,53],[70,54],[356,55],[341,56],[347,57],[345,2],[344,58],[346,59],[355,60],[350,61],[352,62],[353,63],[354,64],[348,2],[349,64],[351,64],[343,64],[342,2],[357,2],[358,31],[337,2],[336,2],[339,56],[340,65],[338,56],[292,2],[296,2],[359,2],[360,2],[361,2],[363,2],[364,66],[362,67],[210,68],[211,68],[213,69],[214,70],[215,71],[216,72],[217,73],[218,74],[219,75],[220,76],[221,77],[222,78],[223,78],[224,79],[225,80],[226,81],[227,82],[212,2],[259,2],[228,83],[229,84],[230,85],[260,86],[231,87],[232,88],[233,89],[234,90],[235,91],[236,92],[237,93],[238,94],[239,95],[240,96],[241,97],[242,98],[244,99],[243,100],[245,101],[246,102],[247,103],[248,104],[249,105],[250,106],[251,107],[252,108],[253,109],[254,110],[255,111],[256,112],[257,113],[258,114],[365,2],[366,80],[367,2],[368,2],[369,2],[370,2],[371,2],[50,2],[277,2],[276,2],[372,6],[373,115],[48,2],[52,116],[374,22],[266,67],[375,2],[376,2],[51,2],[401,117],[402,118],[377,119],[380,119],[399,117],[400,117],[390,120],[389,120],[387,117],[382,117],[395,117],[393,117],[397,117],[381,117],[394,117],[398,117],[383,117],[384,117],[396,117],[378,117],[385,117],[386,117],[388,117],[392,117],[403,121],[391,117],[379,117],[416,122],[415,2],[410,121],[412,123],[411,121],[404,121],[405,121],[407,121],[409,121],[413,123],[414,123],[406,123],[408,123],[417,124],[293,125],[418,126],[184,127],[183,2],[419,2],[420,20],[421,2],[422,2],[423,2],[426,128],[425,129],[424,130],[427,2],[429,131],[298,2],[430,132],[431,133],[447,2],[445,134],[444,135],[435,136],[436,137],[437,137],[438,136],[439,136],[440,136],[441,138],[434,139],[442,135],[443,140],[433,2],[446,141],[432,2],[448,2],[449,142],[450,2],[451,143],[309,144],[308,145],[307,146],[315,147],[313,148],[314,149],[311,150],[312,151],[310,152],[316,153],[306,2],[93,2],[49,2],[100,2],[264,80],[331,2],[126,154],[125,2],[317,151],[318,155],[319,2],[320,156],[428,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[42,2],[38,2],[39,2],[40,2],[41,2],[2,2],[1,2],[43,2],[12,2],[11,2],[89,157],[90,157],[72,2],[74,158],[73,2],[196,159],[118,160],[57,161],[197,162],[155,163],[198,164],[199,159],[116,165],[164,166],[157,167],[156,161],[200,168],[201,169],[202,170],[159,171],[163,172],[158,173],[160,2],[161,174],[162,174],[114,175],[115,176],[91,157],[45,177],[44,2],[53,6],[54,6],[47,178],[46,179],[55,180],[56,181],[166,182],[165,2],[75,6],[76,183],[121,6],[120,184],[119,6],[132,185],[131,186],[127,187],[129,188],[130,2],[122,6],[123,189],[128,2],[133,190],[124,2],[135,180],[151,191],[149,6],[150,192],[153,193],[152,6],[134,6],[136,188],[137,6],[138,6],[140,6],[141,186],[142,2],[139,6],[154,194],[143,6],[144,2],[145,2],[146,2],[147,6],[148,6],[182,195],[181,196],[180,197],[170,198],[172,199],[171,200],[178,2],[169,2],[176,2],[167,201],[177,2],[179,2],[174,202],[168,203],[175,204],[173,205],[187,206],[185,6],[186,207],[195,208],[191,15],[192,209],[193,6],[194,2],[188,2],[189,2],[84,179],[85,179],[88,210],[86,179],[87,161],[92,211],[94,212],[111,2],[97,2],[98,2],[99,2],[101,213],[103,2],[102,2],[113,214],[95,2],[104,2],[96,2],[105,2],[106,2],[107,2],[112,2],[108,6],[109,2],[110,2]],"exportedModulesMap":[[205,1],[203,2],[78,3],[79,4],[77,2],[117,5],[81,6],[83,7],[80,5],[82,8],[209,9],[208,10],[204,1],[206,11],[207,1],[262,12],[263,13],[267,14],[268,15],[269,15],[190,2],[270,2],[272,16],[274,17],[273,18],[271,2],[275,2],[279,19],[261,20],[280,2],[281,21],[282,22],[283,23],[285,24],[286,2],[291,25],[287,2],[290,26],[289,2],[278,27],[294,28],[295,2],[297,29],[284,30],[299,31],[71,6],[300,2],[265,2],[301,32],[302,2],[303,2],[304,33],[305,34],[327,35],[324,36],[321,37],[322,38],[323,37],[326,39],[325,35],[328,2],[288,2],[329,2],[330,2],[333,40],[332,2],[334,41],[335,2],[59,42],[60,43],[58,44],[61,45],[62,46],[63,47],[64,48],[65,49],[66,50],[67,51],[68,52],[69,53],[70,54],[356,55],[341,56],[347,57],[345,2],[344,58],[346,59],[355,60],[350,61],[352,62],[353,63],[354,64],[348,2],[349,64],[351,64],[343,64],[342,2],[357,2],[358,31],[337,2],[336,2],[339,56],[340,65],[338,56],[292,2],[296,2],[359,2],[360,2],[361,2],[363,2],[364,66],[362,67],[210,68],[211,68],[213,69],[214,70],[215,71],[216,72],[217,73],[218,74],[219,75],[220,76],[221,77],[222,78],[223,78],[224,79],[225,80],[226,81],[227,82],[212,2],[259,2],[228,83],[229,84],[230,85],[260,86],[231,87],[232,88],[233,89],[234,90],[235,91],[236,92],[237,93],[238,94],[239,95],[240,96],[241,97],[242,98],[244,99],[243,100],[245,101],[246,102],[247,103],[248,104],[249,105],[250,106],[251,107],[252,108],[253,109],[254,110],[255,111],[256,112],[257,113],[258,114],[365,2],[366,80],[367,2],[368,2],[369,2],[370,2],[371,2],[50,2],[277,2],[276,2],[372,6],[373,115],[48,2],[52,116],[374,22],[266,67],[375,2],[376,2],[51,2],[401,117],[402,118],[377,119],[380,119],[399,117],[400,117],[390,120],[389,120],[387,117],[382,117],[395,117],[393,117],[397,117],[381,117],[394,117],[398,117],[383,117],[384,117],[396,117],[378,117],[385,117],[386,117],[388,117],[392,117],[403,121],[391,117],[379,117],[416,122],[415,2],[410,121],[412,123],[411,121],[404,121],[405,121],[407,121],[409,121],[413,123],[414,123],[406,123],[408,123],[417,124],[293,125],[418,126],[184,127],[183,2],[419,2],[420,20],[421,2],[422,2],[423,2],[426,128],[425,129],[424,130],[427,2],[429,131],[298,2],[430,132],[431,133],[447,2],[445,134],[444,135],[435,136],[436,137],[437,137],[438,136],[439,136],[440,136],[441,138],[434,139],[442,135],[443,140],[433,2],[446,141],[432,2],[448,2],[449,142],[450,2],[451,143],[309,144],[308,145],[307,146],[315,147],[313,148],[314,149],[311,150],[312,151],[310,152],[316,153],[306,2],[93,2],[49,2],[100,2],[264,80],[331,2],[126,154],[125,2],[317,151],[318,155],[319,2],[320,156],[428,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[42,2],[38,2],[39,2],[40,2],[41,2],[2,2],[1,2],[43,2],[12,2],[11,2],[89,157],[90,157],[72,2],[74,158],[73,2],[196,159],[118,160],[57,161],[197,162],[155,163],[198,164],[199,159],[116,165],[164,166],[157,167],[156,161],[200,168],[201,169],[202,170],[159,171],[163,172],[158,173],[160,2],[161,174],[162,174],[114,175],[115,176],[91,157],[45,177],[44,2],[53,6],[54,6],[47,178],[46,179],[55,180],[56,181],[166,182],[165,2],[75,6],[76,183],[121,6],[120,184],[119,6],[132,185],[131,186],[127,187],[129,188],[130,2],[122,6],[123,189],[128,2],[133,190],[124,2],[135,180],[151,191],[149,6],[150,192],[153,193],[152,6],[134,6],[136,188],[137,6],[138,6],[140,6],[141,186],[142,2],[139,6],[154,194],[143,6],[144,2],[145,2],[146,2],[147,6],[148,6],[182,195],[181,196],[180,197],[170,198],[172,199],[171,200],[178,2],[169,2],[176,2],[167,201],[177,2],[179,2],[174,202],[168,203],[175,204],[173,205],[187,206],[185,6],[186,207],[195,208],[191,15],[192,209],[193,6],[194,2],[188,2],[189,2],[84,179],[85,179],[88,210],[86,179],[87,161],[92,211],[94,212],[111,2],[97,2],[98,2],[99,2],[101,213],[103,2],[102,2],[113,214],[95,2],[104,2],[96,2],[105,2],[106,2],[107,2],[112,2],[108,6],[109,2],[110,2]],"semanticDiagnosticsPerFile":[205,203,78,79,77,117,81,83,80,82,209,208,204,206,207,262,263,267,268,269,190,270,272,274,273,271,275,279,261,280,281,282,283,285,286,291,287,290,289,278,294,295,297,284,299,71,300,265,301,302,303,304,305,327,324,321,322,323,326,325,328,288,329,330,333,332,334,335,59,60,58,61,62,63,64,65,66,67,68,69,70,356,341,347,345,344,346,355,350,352,353,354,348,349,351,343,342,357,358,337,336,339,340,338,292,296,359,360,361,363,364,362,210,211,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,212,259,228,229,230,260,231,232,233,234,235,236,237,238,239,240,241,242,244,243,245,246,247,248,249,250,251,252,253,254,255,256,257,258,365,366,367,368,369,370,371,50,277,276,372,373,48,52,374,266,375,376,51,401,402,377,380,399,400,390,389,387,382,395,393,397,381,394,398,383,384,396,378,385,386,388,392,403,391,379,416,415,410,412,411,404,405,407,409,413,414,406,408,417,293,418,184,183,419,420,421,422,423,426,425,424,427,429,298,430,431,447,445,444,435,436,437,438,439,440,441,434,442,443,433,446,432,448,449,450,451,309,308,307,315,313,314,311,312,310,316,306,93,49,100,264,331,126,125,317,318,319,320,428,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,42,38,39,40,41,2,1,43,12,11,89,90,72,74,73,196,118,57,197,155,198,199,116,164,157,156,200,201,202,159,163,158,160,161,162,114,115,91,45,44,53,54,47,46,55,56,166,165,75,76,121,120,119,132,131,127,129,130,122,123,128,133,124,135,151,149,150,153,152,134,136,137,138,140,141,142,139,154,143,144,145,146,147,148,182,181,180,170,172,171,178,169,176,167,177,179,174,168,175,173,187,185,186,195,191,192,193,194,188,189,84,85,88,86,87,92,94,111,97,98,99,101,103,102,113,95,104,96,105,106,107,112,108,109,110]},"version":"4.5.5"}
|
|
@@ -8,47 +8,6 @@ declare type ThemeProviderProps = {
|
|
|
8
8
|
* ---
|
|
9
9
|
* category: components/utilities
|
|
10
10
|
* ---
|
|
11
|
-
*
|
|
12
|
-
* #### DEPRECATED Please use [InstUISettingsProvider](#InstUISettingsProvider)
|
|
13
|
-
* instead. It has the same functionality and adds a text direction context.
|
|
14
|
-
*
|
|
15
|
-
* Wrapper for the [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype) of emotion js.
|
|
16
|
-
*
|
|
17
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
18
|
-
*
|
|
19
|
-
* ```js
|
|
20
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
21
|
-
* import { EmotionThemeProvider } from '@instructure/emotion'
|
|
22
|
-
*
|
|
23
|
-
* @example
|
|
24
|
-
* <EmotionThemeProvider theme={canvas}>
|
|
25
|
-
* <div>Canvas themed part</div>
|
|
26
|
-
*
|
|
27
|
-
* <EmotionThemeProvider
|
|
28
|
-
* theme={{
|
|
29
|
-
* themeOverrides: {
|
|
30
|
-
* canvas: {
|
|
31
|
-
* colors: {
|
|
32
|
-
* backgroundLightest: '#fefefe'
|
|
33
|
-
* },
|
|
34
|
-
* borders: {
|
|
35
|
-
* style: 'dashed'
|
|
36
|
-
* }
|
|
37
|
-
* }
|
|
38
|
-
* }
|
|
39
|
-
* }}
|
|
40
|
-
* >
|
|
41
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
42
|
-
* </EmotionThemeProvider>
|
|
43
|
-
*
|
|
44
|
-
* <EmotionThemeProvider theme={instructure}>
|
|
45
|
-
* <div>Instructure themed part</div>
|
|
46
|
-
* </EmotionThemeProvider>
|
|
47
|
-
* </EmotionThemeProvider>
|
|
48
|
-
* ```
|
|
49
|
-
*
|
|
50
|
-
* @param {object} children
|
|
51
|
-
* @param {object} theme - A full theme or an override object
|
|
52
11
|
* @module EmotionThemeProvider
|
|
53
12
|
*/
|
|
54
13
|
declare function EmotionThemeProvider({ children, theme }: React.PropsWithChildren<ThemeProviderProps>): JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/EmotionThemeProvider/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,OAAO,KAAK,EACV,SAAS,EAEV,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EAEV,eAAe,EAEhB,MAAM,iBAAiB,CAAA;AAExB,aAAK,kBAAkB,GAAG;IACxB,KAAK,CAAC,EAAE,eAAe,CAAA;CACxB,CAAA;AAeD
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/EmotionThemeProvider/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,OAAO,KAAK,EACV,SAAS,EAEV,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EAEV,eAAe,EAEhB,MAAM,iBAAiB,CAAA;AAExB,aAAK,kBAAkB,GAAG;IACxB,KAAK,CAAC,EAAE,eAAe,CAAA;CACxB,CAAA;AAeD;;;;;GAKG;AACH,iBAAS,oBAAoB,CAAC,EAC5B,QAAQ,EACR,KAAU,EACX,EAAE,KAAK,CAAC,iBAAiB,CAAC,kBAAkB,CAAC,eAE7C;kBALQ,oBAAoB;;;;;AAQ7B;;;;;;;;;;;GAWG;AACH,QAAA,MAAM,QAAQ,oBACM,eAAe,6CAgDhC,CAAA;AAiBH,eAAe,oBAAoB,CAAA;AACnC,OAAO,EAAE,oBAAoB,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -32,62 +32,6 @@ declare type InstUIProviderProps = {
|
|
|
32
32
|
* ---
|
|
33
33
|
* @module InstUISettingsProvider
|
|
34
34
|
* @tsProps
|
|
35
|
-
*
|
|
36
|
-
* Wrapper for emotion js's [ThemeProvider](https://emotion.sh/docs/theming#themeprovider-reactcomponenttype).
|
|
37
|
-
*
|
|
38
|
-
* Applies the given theme. It handles either a full theme, or an overrides object.
|
|
39
|
-
* You can also specify the requested text direction for its descendants.
|
|
40
|
-
*
|
|
41
|
-
* It accepts the following props:
|
|
42
|
-
* - theme - A full theme or an override object.
|
|
43
|
-
* - dir - The text direction to use in the descendants. If not
|
|
44
|
-
* given it uses the following in this priority order:
|
|
45
|
-
* - The value given in a parent `TextDirectionContext`
|
|
46
|
-
* - The `dir` prop of `document.documentElement` or its `direction` CSS prop
|
|
47
|
-
* - `ltr`
|
|
48
|
-
* - instanceCounterMap - A [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map)
|
|
49
|
-
* which keeps track of specific InstUI components. (generally this is used for deterministic id generation for [SSR](/#server-side-rendering))
|
|
50
|
-
* - as - InstUISettingsProvider will wrap it's children with a HTML element when the its `dir` property is also set, this can be changed with the `as` property
|
|
51
|
-
*
|
|
52
|
-
* ```js
|
|
53
|
-
*
|
|
54
|
-
* import { canvas, instructure } from '@instructure/ui-themes'
|
|
55
|
-
* import { InstUISettingsProvider } from '@instructure/emotion'
|
|
56
|
-
*
|
|
57
|
-
* <InstUISettingsProvider theme={canvas}>
|
|
58
|
-
* <div>Canvas themed part</div>
|
|
59
|
-
*
|
|
60
|
-
* <InstUISettingsProvider
|
|
61
|
-
* theme={{
|
|
62
|
-
* themeOverrides: {
|
|
63
|
-
* canvas: {
|
|
64
|
-
* colors: {
|
|
65
|
-
* backgroundLightest: '#fefefe'
|
|
66
|
-
* },
|
|
67
|
-
* borders: {
|
|
68
|
-
* style: 'dashed'
|
|
69
|
-
* }
|
|
70
|
-
* }
|
|
71
|
-
* }
|
|
72
|
-
* }}
|
|
73
|
-
* >
|
|
74
|
-
* <div>Canvas with new 'backgroundLightest'</div>
|
|
75
|
-
* </InstUISettingsProvider>
|
|
76
|
-
*
|
|
77
|
-
* <InstUISettingsProvider theme={instructure} dir="rtl">
|
|
78
|
-
* <div>Instructure themed part with RTL text</div>
|
|
79
|
-
* </InstUISettingsProvider>
|
|
80
|
-
*
|
|
81
|
-
* //this is mostly needed for Server Side Rendering, to read more:
|
|
82
|
-
* //read our [SSR](/#server-side-rendering) guide
|
|
83
|
-
* const counter = generateInstanceCounterMap()
|
|
84
|
-
* counter.set("Alert", 5)
|
|
85
|
-
* <InstUISettingsProvider instanceCounterMap={counter}>
|
|
86
|
-
* //this Alert's rendered DOM Node will have [id="Alert_5"] on it
|
|
87
|
-
* <Alert>Test!</Alert>
|
|
88
|
-
* </InstUISettingsProvider>
|
|
89
|
-
* </InstUISettingsProvider>
|
|
90
|
-
* ```
|
|
91
35
|
*/
|
|
92
36
|
declare function InstUISettingsProvider({ children, theme, dir, instanceCounterMap, as }: InstUIProviderProps): JSX.Element;
|
|
93
37
|
declare namespace InstUISettingsProvider {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/InstUISettingsProvider/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAqB,MAAM,OAAO,CAAA;AACzC,OAAO,SAAS,MAAM,YAAY,CAAA;AAWlC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,6BAA6B,CAAA;AAC/E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,aAAK,mBAAmB,GAAG;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE,eAAe,CAAA;IAEvB;;OAEG;IACH,kBAAkB,CAAC,EAAE,4BAA4B,CAAA;CAClD,GAAG,CACA;IACE;;;;;OAKG;IACH,GAAG,EAAE,KAAK,GAAG,KAAK,CAAA;IAClB,EAAE,CAAC,EAAE,aAAa,CAAA;CACnB,GACD;IACE,GAAG,CAAC,EAAE,KAAK,CAAA;IACX,EAAE,CAAC,EAAE,KAAK,CAAA;CACX,CACJ,CAAA;AAED
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/InstUISettingsProvider/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAqB,MAAM,OAAO,CAAA;AACzC,OAAO,SAAS,MAAM,YAAY,CAAA;AAWlC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,6BAA6B,CAAA;AAC/E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,aAAK,mBAAmB,GAAG;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE,eAAe,CAAA;IAEvB;;OAEG;IACH,kBAAkB,CAAC,EAAE,4BAA4B,CAAA;CAClD,GAAG,CACA;IACE;;;;;OAKG;IACH,GAAG,EAAE,KAAK,GAAG,KAAK,CAAA;IAClB,EAAE,CAAC,EAAE,aAAa,CAAA;CACnB,GACD;IACE,GAAG,CAAC,EAAE,KAAK,CAAA;IACX,EAAE,CAAC,EAAE,KAAK,CAAA;CACX,CACJ,CAAA;AAED;;;;;;GAMG;AACH,iBAAS,sBAAsB,CAAC,EAC9B,QAAQ,EACR,KAAU,EACV,GAAG,EACH,kBAAkB,EAClB,EAAE,EACH,EAAE,mBAAmB,eA6BrB;kBAnCQ,sBAAsB;;;;;;;;;;;;;AAoD/B,eAAe,sBAAsB,CAAA;AACrC,OAAO,EAAE,sBAAsB,EAAE,CAAA"}
|