@khanacademy/wonder-blocks-progress-spinner 1.1.40 → 1.1.41
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/CHANGELOG.md +24 -0
- package/dist/components/circular-spinner.d.ts +40 -0
- package/dist/components/circular-spinner.js.flow +57 -0
- package/dist/es/index.js +24 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +38 -19
- package/dist/index.js.flow +8 -2
- package/package.json +5 -5
- package/src/components/{circular-spinner.js → circular-spinner.tsx} +16 -21
- package/src/{index.js → index.ts} +0 -1
- package/tsconfig.json +12 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/src/components/__docs__/circular-spinner.stories.js +0 -182
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-progress-spinner
|
|
2
2
|
|
|
3
|
+
## 1.1.41
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d816af08: Update build and test configs use TypeScript
|
|
8
|
+
- 3891f544: Update babel config to include plugins that Storybook needed
|
|
9
|
+
- 0d28bb1c: Configured TypeScript
|
|
10
|
+
- 3d05f764: Fix HOCs and other type errors
|
|
11
|
+
- c2ec4902: Update eslint configuration, fix lint
|
|
12
|
+
- 2983c05b: Include 'types' field in package.json
|
|
13
|
+
- 77ff6a66: Generate Flow types from TypeScript types
|
|
14
|
+
- ec8d4b7f: Fix miscellaneous TypeScript errors
|
|
15
|
+
- Updated dependencies [d816af08]
|
|
16
|
+
- Updated dependencies [3891f544]
|
|
17
|
+
- Updated dependencies [0d28bb1c]
|
|
18
|
+
- Updated dependencies [873f4a14]
|
|
19
|
+
- Updated dependencies [3d05f764]
|
|
20
|
+
- Updated dependencies [c2ec4902]
|
|
21
|
+
- Updated dependencies [2983c05b]
|
|
22
|
+
- Updated dependencies [77ff6a66]
|
|
23
|
+
- Updated dependencies [ec8d4b7f]
|
|
24
|
+
- @khanacademy/wonder-blocks-color@1.2.2
|
|
25
|
+
- @khanacademy/wonder-blocks-core@4.8.0
|
|
26
|
+
|
|
3
27
|
## 1.1.40
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { AriaProps, StyleType } from "@khanacademy/wonder-blocks-core";
|
|
3
|
+
type Props = AriaProps & {
|
|
4
|
+
/**
|
|
5
|
+
* The size of the spinner. (large = 96px, medium = 48px, small = 24px,
|
|
6
|
+
* xsmall = 16px)
|
|
7
|
+
*/
|
|
8
|
+
size: "xsmall" | "small" | "medium" | "large";
|
|
9
|
+
/** Should a light version of the spinner be shown?
|
|
10
|
+
* (To be used on a dark background.)
|
|
11
|
+
*/
|
|
12
|
+
light: boolean;
|
|
13
|
+
/** Any (optional) styling to apply to the spinner container. */
|
|
14
|
+
style?: StyleType;
|
|
15
|
+
/**
|
|
16
|
+
* Test ID used for e2e testing.
|
|
17
|
+
*/
|
|
18
|
+
testId?: string;
|
|
19
|
+
};
|
|
20
|
+
type DefaultProps = {
|
|
21
|
+
light: Props["light"];
|
|
22
|
+
size: Props["size"];
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* A circular progress spinner. Used for indicating loading progress. Should
|
|
26
|
+
* be used by default in most places where a loading indicator is needed.
|
|
27
|
+
*
|
|
28
|
+
* ### Usage
|
|
29
|
+
*
|
|
30
|
+
* ```js
|
|
31
|
+
* import {CircularSpinner} from "@khanacademy/wonder-blocks-progress-spinner";
|
|
32
|
+
*
|
|
33
|
+
* <CircularSpinner />
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
export default class CircularSpinner extends React.Component<Props> {
|
|
37
|
+
static defaultProps: DefaultProps;
|
|
38
|
+
render(): React.ReactElement;
|
|
39
|
+
}
|
|
40
|
+
export {};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Flowtype definitions for circular-spinner
|
|
3
|
+
* Generated by Flowgen from a Typescript Definition
|
|
4
|
+
* Flowgen v1.21.0
|
|
5
|
+
* @flow
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import * as React from "react";
|
|
9
|
+
import type { AriaProps, StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
|
+
declare type Props = {
|
|
11
|
+
...AriaProps,
|
|
12
|
+
...{
|
|
13
|
+
/**
|
|
14
|
+
* The size of the spinner. (large = 96px, medium = 48px, small = 24px,
|
|
15
|
+
* xsmall = 16px)
|
|
16
|
+
*/
|
|
17
|
+
size: "xsmall" | "small" | "medium" | "large",
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Should a light version of the spinner be shown?
|
|
21
|
+
* (To be used on a dark background.)
|
|
22
|
+
*/
|
|
23
|
+
light: boolean,
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Any (optional) styling to apply to the spinner container.
|
|
27
|
+
*/
|
|
28
|
+
style?: StyleType,
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Test ID used for e2e testing.
|
|
32
|
+
*/
|
|
33
|
+
testId?: string,
|
|
34
|
+
...
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
declare type DefaultProps = {
|
|
38
|
+
light: $PropertyType<Props, "light">,
|
|
39
|
+
size: $PropertyType<Props, "size">,
|
|
40
|
+
...
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* A circular progress spinner. Used for indicating loading progress. Should
|
|
44
|
+
* be used by default in most places where a loading indicator is needed.
|
|
45
|
+
*
|
|
46
|
+
* ### Usage
|
|
47
|
+
*
|
|
48
|
+
* ```js
|
|
49
|
+
* import {CircularSpinner} from "@khanacademy/wonder-blocks-progress-spinner";
|
|
50
|
+
*
|
|
51
|
+
* <CircularSpinner />
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
declare export default class CircularSpinner mixins React.Component<Props> {
|
|
55
|
+
static defaultProps: DefaultProps;
|
|
56
|
+
render(): React.Element<>;
|
|
57
|
+
}
|
package/dist/es/index.js
CHANGED
|
@@ -3,6 +3,20 @@ import { StyleSheet } from 'aphrodite';
|
|
|
3
3
|
import { addStyle, View } from '@khanacademy/wonder-blocks-core';
|
|
4
4
|
import Color from '@khanacademy/wonder-blocks-color';
|
|
5
5
|
|
|
6
|
+
function _setPrototypeOf(o, p) {
|
|
7
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
8
|
+
o.__proto__ = p;
|
|
9
|
+
return o;
|
|
10
|
+
};
|
|
11
|
+
return _setPrototypeOf(o, p);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function _inheritsLoose(subClass, superClass) {
|
|
15
|
+
subClass.prototype = Object.create(superClass.prototype);
|
|
16
|
+
subClass.prototype.constructor = subClass;
|
|
17
|
+
_setPrototypeOf(subClass, superClass);
|
|
18
|
+
}
|
|
19
|
+
|
|
6
20
|
const heights = {
|
|
7
21
|
xsmall: 16,
|
|
8
22
|
small: 24,
|
|
@@ -20,8 +34,13 @@ const colors = {
|
|
|
20
34
|
dark: Color.offBlack16
|
|
21
35
|
};
|
|
22
36
|
const StyledPath = addStyle("path");
|
|
23
|
-
|
|
24
|
-
|
|
37
|
+
let CircularSpinner = function (_React$Component) {
|
|
38
|
+
_inheritsLoose(CircularSpinner, _React$Component);
|
|
39
|
+
function CircularSpinner() {
|
|
40
|
+
return _React$Component.apply(this, arguments) || this;
|
|
41
|
+
}
|
|
42
|
+
var _proto = CircularSpinner.prototype;
|
|
43
|
+
_proto.render = function render() {
|
|
25
44
|
const {
|
|
26
45
|
size,
|
|
27
46
|
light,
|
|
@@ -47,9 +66,9 @@ class CircularSpinner extends React.Component {
|
|
|
47
66
|
return React.createElement(View, {
|
|
48
67
|
style: [styles.spinnerContainer, style]
|
|
49
68
|
}, svg);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
}
|
|
69
|
+
};
|
|
70
|
+
return CircularSpinner;
|
|
71
|
+
}(React.Component);
|
|
53
72
|
CircularSpinner.defaultProps = {
|
|
54
73
|
size: "large",
|
|
55
74
|
light: false
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CircularSpinner } from "./components/circular-spinner";
|
package/dist/index.js
CHANGED
|
@@ -10,26 +10,40 @@ var Color = require('@khanacademy/wonder-blocks-color');
|
|
|
10
10
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
11
|
|
|
12
12
|
function _interopNamespace(e) {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
});
|
|
23
|
-
}
|
|
13
|
+
if (e && e.__esModule) return e;
|
|
14
|
+
var n = Object.create(null);
|
|
15
|
+
if (e) {
|
|
16
|
+
Object.keys(e).forEach(function (k) {
|
|
17
|
+
if (k !== 'default') {
|
|
18
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
19
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return e[k]; }
|
|
24
22
|
});
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
n["default"] = e;
|
|
27
|
+
return Object.freeze(n);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
31
31
|
var Color__default = /*#__PURE__*/_interopDefaultLegacy(Color);
|
|
32
32
|
|
|
33
|
+
function _setPrototypeOf(o, p) {
|
|
34
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
35
|
+
o.__proto__ = p;
|
|
36
|
+
return o;
|
|
37
|
+
};
|
|
38
|
+
return _setPrototypeOf(o, p);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function _inheritsLoose(subClass, superClass) {
|
|
42
|
+
subClass.prototype = Object.create(superClass.prototype);
|
|
43
|
+
subClass.prototype.constructor = subClass;
|
|
44
|
+
_setPrototypeOf(subClass, superClass);
|
|
45
|
+
}
|
|
46
|
+
|
|
33
47
|
const heights = {
|
|
34
48
|
xsmall: 16,
|
|
35
49
|
small: 24,
|
|
@@ -47,8 +61,13 @@ const colors = {
|
|
|
47
61
|
dark: Color__default["default"].offBlack16
|
|
48
62
|
};
|
|
49
63
|
const StyledPath = wonderBlocksCore.addStyle("path");
|
|
50
|
-
|
|
51
|
-
|
|
64
|
+
let CircularSpinner = function (_React$Component) {
|
|
65
|
+
_inheritsLoose(CircularSpinner, _React$Component);
|
|
66
|
+
function CircularSpinner() {
|
|
67
|
+
return _React$Component.apply(this, arguments) || this;
|
|
68
|
+
}
|
|
69
|
+
var _proto = CircularSpinner.prototype;
|
|
70
|
+
_proto.render = function render() {
|
|
52
71
|
const {
|
|
53
72
|
size,
|
|
54
73
|
light,
|
|
@@ -74,9 +93,9 @@ class CircularSpinner extends React__namespace.Component {
|
|
|
74
93
|
return React__namespace.createElement(wonderBlocksCore.View, {
|
|
75
94
|
style: [styles.spinnerContainer, style]
|
|
76
95
|
}, svg);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
}
|
|
96
|
+
};
|
|
97
|
+
return CircularSpinner;
|
|
98
|
+
}(React__namespace.Component);
|
|
80
99
|
CircularSpinner.defaultProps = {
|
|
81
100
|
size: "large",
|
|
82
101
|
light: false
|
package/dist/index.js.flow
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-progress-spinner",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.41",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"description": "",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"module": "dist/es/index.js",
|
|
11
|
-
"
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
14
|
},
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
|
-
"@khanacademy/wonder-blocks-color": "^1.2.
|
|
20
|
-
"@khanacademy/wonder-blocks-core": "^4.
|
|
19
|
+
"@khanacademy/wonder-blocks-color": "^1.2.2",
|
|
20
|
+
"@khanacademy/wonder-blocks-core": "^4.8.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"aphrodite": "^1.2.5",
|
|
24
24
|
"react": "16.14.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"wb-dev-build-settings": "^0.7.
|
|
27
|
+
"wb-dev-build-settings": "^0.7.2"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
// @flow
|
|
2
1
|
import * as React from "react";
|
|
3
2
|
import {StyleSheet} from "aphrodite";
|
|
4
3
|
import {View, addStyle} from "@khanacademy/wonder-blocks-core";
|
|
@@ -11,49 +10,44 @@ const heights = {
|
|
|
11
10
|
small: 24,
|
|
12
11
|
medium: 48,
|
|
13
12
|
large: 96,
|
|
14
|
-
};
|
|
13
|
+
} as const;
|
|
15
14
|
|
|
16
15
|
const paths = {
|
|
17
16
|
xsmall: "M7.237.741C7.165.393 6.95.154 6.656.053A1.01 1.01 0 0 0 6.18.01c-.053.009-.053.009-.087.017C2.553.949 0 4.214 0 7.91 0 12.36 3.598 16 8 16c4.4 0 8-3.647 8-8.112a1.02 1.02 0 0 0-.118-.423.877.877 0 0 0-.808-.48.909.909 0 0 0-.81.46c-.09.151-.13.296-.146.455-.08 3.493-2.737 6.207-6.118 6.207-3.41 0-6.118-2.74-6.118-6.196 0-2.843 1.936-5.291 4.644-6.022.1-.028.224-.082.352-.177a.928.928 0 0 0 .36-.97z",
|
|
18
17
|
small: "M10.598.943c-.093-.449-.362-.748-.732-.875a1.314 1.314 0 0 0-.723-.033C3.83 1.417 0 6.317 0 11.864 0 18.538 5.398 24 12 24c6.598 0 12-5.471 12-12.16a1.333 1.333 0 0 0-.154-.548c-.193-.368-.544-.606-1.023-.606-.472 0-.825.229-1.035.585-.117.2-.169.39-.189.582-.124 5.472-4.294 9.73-9.599 9.73-5.349 0-9.599-4.3-9.599-9.72 0-4.46 3.036-8.299 7.28-9.444.127-.036.291-.107.458-.232.373-.28.57-.711.46-1.244z",
|
|
19
18
|
medium: "M44.19 23.455a1.91 1.91 0 1 1 3.801 0h.003c.004.18.006.363.006.545 0 13.255-10.745 24-24 24S0 37.255 0 24 10.745 0 24 0c.182 0 .364.002.545.006V.01a1.91 1.91 0 1 1 0 3.801v.015A20.564 20.564 0 0 0 24 3.818C12.854 3.818 3.818 12.854 3.818 24c0 11.146 9.036 20.182 20.182 20.182 11.146 0 20.182-9.036 20.182-20.182 0-.182-.003-.364-.007-.545h.015z",
|
|
20
19
|
large: "M88.38 46.91a3.818 3.818 0 1 1 7.602 0h.006c.008.362.012.725.012 1.09 0 26.51-21.49 48-48 48S0 74.51 0 48 21.49 0 48 0c.365 0 .728.004 1.09.012v.005a3.818 3.818 0 1 1 0 7.602v.032c-.362-.01-.725-.015-1.09-.015C25.708 7.636 7.636 25.708 7.636 48c0 22.292 18.072 40.364 40.364 40.364 22.292 0 40.364-18.072 40.364-40.364 0-.365-.005-.728-.015-1.09h.032z",
|
|
21
|
-
};
|
|
20
|
+
} as const;
|
|
22
21
|
|
|
23
22
|
const colors = {
|
|
24
23
|
light: Color.white,
|
|
25
24
|
dark: Color.offBlack16,
|
|
26
|
-
};
|
|
25
|
+
} as const;
|
|
27
26
|
|
|
28
27
|
const StyledPath = addStyle("path");
|
|
29
28
|
|
|
30
|
-
type Props = {
|
|
31
|
-
...AriaProps,
|
|
32
|
-
|
|
29
|
+
type Props = AriaProps & {
|
|
33
30
|
/**
|
|
34
31
|
* The size of the spinner. (large = 96px, medium = 48px, small = 24px,
|
|
35
32
|
* xsmall = 16px)
|
|
36
33
|
*/
|
|
37
|
-
size: "xsmall" | "small" | "medium" | "large"
|
|
38
|
-
|
|
34
|
+
size: "xsmall" | "small" | "medium" | "large";
|
|
39
35
|
/** Should a light version of the spinner be shown?
|
|
40
36
|
* (To be used on a dark background.)
|
|
41
37
|
*/
|
|
42
|
-
light: boolean
|
|
43
|
-
|
|
38
|
+
light: boolean;
|
|
44
39
|
/** Any (optional) styling to apply to the spinner container. */
|
|
45
|
-
style?: StyleType
|
|
46
|
-
|
|
40
|
+
style?: StyleType;
|
|
47
41
|
/**
|
|
48
42
|
* Test ID used for e2e testing.
|
|
49
43
|
*/
|
|
50
|
-
testId?: string
|
|
51
|
-
|
|
44
|
+
testId?: string;
|
|
45
|
+
};
|
|
52
46
|
|
|
53
|
-
type DefaultProps = {
|
|
54
|
-
light:
|
|
55
|
-
size:
|
|
56
|
-
|
|
47
|
+
type DefaultProps = {
|
|
48
|
+
light: Props["light"];
|
|
49
|
+
size: Props["size"];
|
|
50
|
+
};
|
|
57
51
|
|
|
58
52
|
/**
|
|
59
53
|
* A circular progress spinner. Used for indicating loading progress. Should
|
|
@@ -73,7 +67,7 @@ export default class CircularSpinner extends React.Component<Props> {
|
|
|
73
67
|
light: false,
|
|
74
68
|
};
|
|
75
69
|
|
|
76
|
-
render(): React.
|
|
70
|
+
render(): React.ReactElement {
|
|
77
71
|
const {size, light, style, testId} = this.props;
|
|
78
72
|
|
|
79
73
|
const height = heights[size];
|
|
@@ -110,7 +104,7 @@ const rotateKeyFrames = {
|
|
|
110
104
|
"100%": {
|
|
111
105
|
transform: "rotate(360deg)",
|
|
112
106
|
},
|
|
113
|
-
};
|
|
107
|
+
} as const;
|
|
114
108
|
|
|
115
109
|
const styles = StyleSheet.create({
|
|
116
110
|
spinnerContainer: {
|
|
@@ -118,6 +112,7 @@ const styles = StyleSheet.create({
|
|
|
118
112
|
},
|
|
119
113
|
loadingSpinner: {
|
|
120
114
|
transformOrigin: "50% 50%",
|
|
115
|
+
// @ts-expect-error [FEI-5019]: `animationName` expects a string not an object.
|
|
121
116
|
animationName: rotateKeyFrames,
|
|
122
117
|
animationDuration: "1.1s",
|
|
123
118
|
animationIterationCount: "infinite",
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.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.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.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","../wonder-blocks-core/dist/util/types.d.ts","../wonder-blocks-core/dist/components/text.d.ts","../wonder-blocks-core/dist/components/view.d.ts","../wonder-blocks-core/dist/components/render-state-context.d.ts","../wonder-blocks-core/dist/components/with-ssr-placeholder.d.ts","../wonder-blocks-core/dist/components/id-provider.d.ts","../wonder-blocks-core/dist/components/unique-id-provider.d.ts","../wonder-blocks-core/dist/util/add-style.d.ts","../wonder-blocks-core/dist/util/server.d.ts","../wonder-blocks-core/dist/hooks/use-unique-id.d.ts","../wonder-blocks-core/dist/hooks/use-force-update.d.ts","../wonder-blocks-core/dist/hooks/use-is-mounted.d.ts","../wonder-blocks-core/dist/hooks/use-on-mount-effect.d.ts","../wonder-blocks-core/dist/hooks/use-online.d.ts","../wonder-blocks-core/dist/hooks/use-render-state.d.ts","../wonder-blocks-core/dist/components/render-state-root.d.ts","../wonder-blocks-core/dist/index.d.ts","../wonder-blocks-color/dist/util/utils.d.ts","../wonder-blocks-color/dist/index.d.ts","./src/components/circular-spinner.tsx","./src/index.ts","./types/aphrodite.d.ts","./types/matchers.d.ts","./types/utility.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@types/aria-query/index.d.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/color-name/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/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/concat-stream/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/is-empty/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/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.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/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/nlcst/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/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/supports-color/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/anymatch/index.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/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},"1cb5a1761c7b7b96ab479acdc8054212c97639b11f12d902b13320853cd70040","7ebb976bd59fe5529e56d0b23be97f220a705e45ad38d556475f8428ef2917c6","2139f3918b597d5279454c2b5bae66674ccc96ac9dffb605452a92fd6e0a3bfa","f856ed3eee33667370b9c9fd80ef31ec21f9a43217c417ac7c8ef5666cb433e1","34b9a71308fa65d9d5bf816775537f42964328be0bc2fb144c85f90bc2293437","de76b973e659ff9d0cece9efc2507b897c7f50763617bc017b4a396134588647","2e40a1344fb0f0c3eb2a706ecd416fbd0acac2b8c489783f4a6eaacf531b2275","6c024c83ced4dfb1fc798be4649b996c24ecbd005e607c4ee2619ceec34f358d","15b4dcbf307452ab56bf665fc4fadeea11a8201ed23098cfb9bce145fccb7139","ee0fccc1e97251e3f3aa7d4a0682b2a28bd0bbf6fae3e169368eb01d74c4e4ec","e7391aed3af92e257fc4ea6784f84aa931026a92cf36472c1e89f4279858552c","f7147de5c8f9cb1143c3b43630f734fff707f1535addabb592f8e560209dd6a7","139e91432dc83fb89d35c9916757f6ec6f1ea589ff6eec6ef6de278271d05896","055e664e1288198c705162c24c89591e8f88c91a89821c5c528256b025779b26","398155e58de7e65e21c70d5d71c1fddb922681cd50477e6b62b0be5fa9bcf847","40ef81ea12c88f731137da2858c8fb2dc31b8299a114bbe82bbd2d102fd64132","132043ff06994187454edd164130dd4058bc8493d0b735003ee6f91132459a8a","3f5be0e5963e749265c6b99f392b38d342a52a6f94d5987e65c351dda76b4b31","0c03a180ada1c70ea75da5a37ce7d3c2c7a6e451426da82eaee74516d703eda7",{"version":"6d0d176bf383451d756759fb34c5bc743769848535b3545b9aa08657ac366969","signature":"9031347b7683c7a74cc8ca6dc3701e4e9dad10a7d2cb9874a4ce4643e8434bf5"},{"version":"a9b8f89aca1e92275de0af8974ca8fdcc45f8dd4d8a50f1954ee5b5a54af60e1","signature":"7ebcb3808a80ca4c5c17af3df229b6835fef269a4bcc3853b219982d0c1464d3"},"e5eded91d451a61471ff30c11e4df908f7eb1464689977f4702a562489db2c86",{"version":"9be348abf5d43091876a86f9acf23927a240915f8fc6d51155dbe5bdb69ef229","affectsGlobalScope":true},{"version":"180f403b4facff38da095189726c3c3a5aa220be0793d4d862aa910887c7cb71","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","3078727fed04c123165efdb42deeac5dceaa42ac62216ca13cb809dc7e13415f","19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","310a0cc92822ada13db096f9970a576de760b2f82a3782a24af62cb5a07e0aff","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8d9d743d7c21d105be24d154834a94557671c0ab0fc7f7329d3076784a80aa93","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","ac295e0d29ca135d7dca2069a6e57943ed18800754dbe8fcb3974fb9ce497c3c",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","d45d40831ccbd547e3f4ae8f326420b9e454dd27fa970f417c8e94a23e93db29","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c",{"version":"eb9e147dbb7289f09af3b161483c09a9175c3b222ed587f4a3c0112841e7d6ff","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","0d65b782b1a9b5891802ef2022c78481b19dfe133ba8d9f7596fe1320314342d","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","bdc18dd47aea9977e419a8e03e7e5d04ed8cf8265e014d8788848b76b969cbba","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","7429e36c7e860a83e1166d6f0977fa4938b7a7a346255169a678939594394375","da297c98a5a86092b19aed23ddc61f5d0e64bc2fa83dc606a89d4e54dc6ec5a3",{"version":"c856e68ae3c730c5b59b0a5c0c8e951596ae79da7d29c9a1b1a8257109f3f3cc","affectsGlobalScope":true},"e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[79,132,179,180,181],[132,179,180,181],[132,168,179,180,181],[76,132,179,180,181],[79,80,81,82,83,132,179,180,181],[79,81,132,179,180,181],[120,132,139,179,180,181],[132,141,179,180,181],[76,132,145,179,180,181],[76,132,143,144,179,180,181],[102,132,139,148,179,180,181],[103,132,139,179,180,181],[132,151,179,180,181],[132,159,179,180,181],[132,153,159,179,180,181],[132,154,155,156,157,158,179,180,181],[132,163,179,180,181],[132,164,179,180,181],[132,170,173,179,180,181],[132,166,172,179,180,181],[132,170,179,180,181],[132,167,171,179,180,181],[102,132,134,139,177,178,180,181],[132,179,180],[132,179,181],[132,179,180,181,184,186,187,188,189,190,191,192,193,194,195,196],[132,179,180,181,184,185,187,188,189,190,191,192,193,194,195,196],[132,179,180,181,185,186,187,188,189,190,191,192,193,194,195,196],[132,179,180,181,184,185,186,188,189,190,191,192,193,194,195,196],[132,179,180,181,184,185,186,187,189,190,191,192,193,194,195,196],[132,179,180,181,184,185,186,187,188,190,191,192,193,194,195,196],[132,179,180,181,184,185,186,187,188,189,191,192,193,194,195,196],[132,179,180,181,184,185,186,187,188,189,190,192,193,194,195,196],[132,179,180,181,184,185,186,187,188,189,190,191,193,194,195,196],[132,179,180,181,184,185,186,187,188,189,190,191,192,194,195,196],[132,179,180,181,184,185,186,187,188,189,190,191,192,193,195,196],[132,179,180,181,184,185,186,187,188,189,190,191,192,193,194,196],[132,179,180,181,184,185,186,187,188,189,190,191,192,193,194,195],[105,131,132,139,179,180,181,200,201],[105,120,132,139,179,180,181],[86,132,179,180,181],[89,132,179,180,181],[90,95,123,132,179,180,181],[91,102,103,110,120,131,132,179,180,181],[91,92,102,110,132,179,180,181],[93,132,179,180,181],[94,95,103,111,132,179,180,181],[95,120,128,132,179,180,181],[96,98,102,110,132,179,180,181],[97,132,179,180,181],[98,99,132,179,180,181],[102,132,179,180,181],[100,102,132,179,180,181],[102,103,104,120,131,132,179,180,181],[102,103,104,117,120,123,132,179,180,181],[132,136,179,180,181],[98,105,110,120,131,132,179,180,181],[102,103,105,106,110,120,128,131,132,179,180,181],[105,107,120,128,131,132,179,180,181],[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,179,180,181],[102,108,132,179,180,181],[109,131,132,179,180,181],[98,102,110,120,132,179,180,181],[111,132,179,180,181],[112,132,179,180,181],[89,113,132,179,180,181],[114,130,132,136,179,180,181],[115,132,179,180,181],[116,132,179,180,181],[102,117,118,132,179,180,181],[117,119,132,134,179,180,181],[90,102,120,121,122,123,132,179,180,181],[90,120,122,132,179,180,181],[120,121,132,179,180,181],[123,132,179,180,181],[124,132,179,180,181],[102,126,127,132,179,180,181],[126,127,132,179,180,181],[95,110,120,128,132,179,180,181],[129,132,179,180,181],[110,130,132,179,180,181],[90,105,116,131,132,179,180,181],[95,132,179,180,181],[120,132,133,179,180,181],[132,134,179,180,181],[132,135,179,180,181],[90,95,102,104,113,120,131,132,134,136,179,180,181],[120,132,137,179,180,181],[132,176,179,180,181],[132,177,179,180,181],[51,132,179,180,181],[51,132,159,179,180,181,210],[51,132,159,179,180,181],[47,48,49,50,132,179,180,181],[132,174,179,180,181],[132,179,180,181,222],[95,132,139,179,180,181,217,222],[95,132,139,179,180,181,220,222,223,224,225],[132,179,180,181,228],[132,169,179,180,181],[69,132,179,180,181],[51,52,132,179,180,181],[51,55,132,179,180,181],[55,132,179,180,181],[52,132,179,180,181],[52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,132,179,180,181],[51,73,132,179,180,181],[51,68,70,73,132,179,180,181],[71,132,179,180,181],[51,68],[71]],"referencedMap":[[81,1],[79,2],[169,3],[168,2],[77,4],[78,2],[84,5],[80,1],[82,6],[83,1],[85,2],[140,7],[142,8],[146,9],[143,2],[145,10],[144,2],[147,4],[76,2],[149,11],[150,12],[152,13],[153,2],[157,14],[158,14],[154,15],[155,15],[156,15],[159,16],[160,2],[161,2],[162,2],[163,2],[164,17],[165,18],[174,19],[166,2],[173,20],[171,21],[172,22],[175,2],[179,23],[181,24],[180,25],[182,2],[183,2],[185,26],[186,27],[184,28],[187,29],[188,30],[189,31],[190,32],[191,33],[192,34],[193,35],[194,36],[195,37],[196,38],[197,13],[148,2],[198,2],[141,2],[199,13],[201,2],[202,39],[200,40],[86,41],[87,41],[89,42],[90,43],[91,44],[92,45],[93,46],[94,47],[95,48],[96,49],[97,50],[98,51],[99,51],[101,52],[100,53],[102,52],[103,54],[104,55],[88,56],[138,2],[105,57],[106,58],[107,59],[139,60],[108,61],[109,62],[110,63],[111,64],[112,65],[113,66],[114,67],[115,68],[116,69],[117,70],[118,70],[119,71],[120,72],[122,73],[121,74],[123,75],[124,76],[125,2],[126,77],[127,78],[128,79],[129,80],[130,81],[131,82],[132,83],[133,84],[134,85],[135,86],[136,87],[137,88],[203,2],[204,52],[205,2],[177,89],[176,90],[206,2],[207,2],[49,2],[208,2],[209,91],[211,92],[210,93],[212,91],[213,91],[47,2],[51,94],[214,2],[215,2],[50,2],[216,2],[217,2],[218,2],[219,2],[220,2],[221,95],[178,2],[223,96],[151,2],[227,2],[225,97],[226,98],[228,2],[229,99],[224,2],[167,2],[48,2],[170,100],[222,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[70,101],[69,2],[57,102],[55,91],[67,91],[53,102],[58,102],[54,102],[56,103],[62,2],[63,2],[64,2],[65,2],[66,104],[61,105],[68,106],[59,102],[60,2],[52,107],[71,108],[72,109],[73,91],[74,2],[75,2]],"exportedModulesMap":[[81,1],[79,2],[169,3],[168,2],[77,4],[78,2],[84,5],[80,1],[82,6],[83,1],[85,2],[140,7],[142,8],[146,9],[143,2],[145,10],[144,2],[147,4],[76,2],[149,11],[150,12],[152,13],[153,2],[157,14],[158,14],[154,15],[155,15],[156,15],[159,16],[160,2],[161,2],[162,2],[163,2],[164,17],[165,18],[174,19],[166,2],[173,20],[171,21],[172,22],[175,2],[179,23],[181,24],[180,25],[182,2],[183,2],[185,26],[186,27],[184,28],[187,29],[188,30],[189,31],[190,32],[191,33],[192,34],[193,35],[194,36],[195,37],[196,38],[197,13],[148,2],[198,2],[141,2],[199,13],[201,2],[202,39],[200,40],[86,41],[87,41],[89,42],[90,43],[91,44],[92,45],[93,46],[94,47],[95,48],[96,49],[97,50],[98,51],[99,51],[101,52],[100,53],[102,52],[103,54],[104,55],[88,56],[138,2],[105,57],[106,58],[107,59],[139,60],[108,61],[109,62],[110,63],[111,64],[112,65],[113,66],[114,67],[115,68],[116,69],[117,70],[118,70],[119,71],[120,72],[122,73],[121,74],[123,75],[124,76],[125,2],[126,77],[127,78],[128,79],[129,80],[130,81],[131,82],[132,83],[133,84],[134,85],[135,86],[136,87],[137,88],[203,2],[204,52],[205,2],[177,89],[176,90],[206,2],[207,2],[49,2],[208,2],[209,91],[211,92],[210,93],[212,91],[213,91],[47,2],[51,94],[214,2],[215,2],[50,2],[216,2],[217,2],[218,2],[219,2],[220,2],[221,95],[178,2],[223,96],[151,2],[227,2],[225,97],[226,98],[228,2],[229,99],[224,2],[167,2],[48,2],[170,100],[222,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[70,101],[69,2],[57,102],[55,91],[67,91],[53,102],[58,102],[54,102],[56,103],[62,2],[63,2],[64,2],[65,2],[66,104],[61,105],[68,106],[59,102],[60,2],[52,107],[71,110],[72,111],[73,91],[74,2],[75,2]],"semanticDiagnosticsPerFile":[81,79,169,168,77,78,84,80,82,83,85,140,142,146,143,145,144,147,76,149,150,152,153,157,158,154,155,156,159,160,161,162,163,164,165,174,166,173,171,172,175,179,181,180,182,183,185,186,184,187,188,189,190,191,192,193,194,195,196,197,148,198,141,199,201,202,200,86,87,89,90,91,92,93,94,95,96,97,98,99,101,100,102,103,104,88,138,105,106,107,139,108,109,110,111,112,113,114,115,116,117,118,119,120,122,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,203,204,205,177,176,206,207,49,208,209,211,210,212,213,47,51,214,215,50,216,217,218,219,220,221,178,223,151,227,225,226,228,229,224,167,48,170,222,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,70,69,57,55,67,53,58,54,56,62,63,64,65,66,61,68,59,60,52,71,72,73,74,75],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"4.9.5"}
|
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
// @flow
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
import {StyleSheet, css} from "aphrodite";
|
|
4
|
-
import type {StoryComponentType} from "@storybook/react";
|
|
5
|
-
|
|
6
|
-
import Color from "@khanacademy/wonder-blocks-color";
|
|
7
|
-
import {View} from "@khanacademy/wonder-blocks-core";
|
|
8
|
-
import {CircularSpinner} from "@khanacademy/wonder-blocks-progress-spinner";
|
|
9
|
-
import Spacing from "@khanacademy/wonder-blocks-spacing";
|
|
10
|
-
import {Body, LabelLarge} from "@khanacademy/wonder-blocks-typography";
|
|
11
|
-
|
|
12
|
-
import ComponentInfo from "../../../../../.storybook/components/component-info";
|
|
13
|
-
import {name, version} from "../../../package.json";
|
|
14
|
-
|
|
15
|
-
export default {
|
|
16
|
-
title: "ProgressSpinner/CircularSpinner",
|
|
17
|
-
component: CircularSpinner,
|
|
18
|
-
parameters: {
|
|
19
|
-
componentSubtitle: ((
|
|
20
|
-
<ComponentInfo name={name} version={version} />
|
|
21
|
-
): any),
|
|
22
|
-
docs: {
|
|
23
|
-
description: {
|
|
24
|
-
component: null,
|
|
25
|
-
},
|
|
26
|
-
source: {
|
|
27
|
-
// See https://github.com/storybookjs/storybook/issues/12596
|
|
28
|
-
excludeDecorators: true,
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
},
|
|
32
|
-
decorators: [
|
|
33
|
-
(Story: any): React.Element<typeof View> => (
|
|
34
|
-
<View style={styles.example}>
|
|
35
|
-
<Story />
|
|
36
|
-
</View>
|
|
37
|
-
),
|
|
38
|
-
],
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export const Default: StoryComponentType = (args) => (
|
|
42
|
-
<CircularSpinner {...args} />
|
|
43
|
-
);
|
|
44
|
-
|
|
45
|
-
export const Sizes: StoryComponentType = () => (
|
|
46
|
-
<table>
|
|
47
|
-
<tbody>
|
|
48
|
-
<tr>
|
|
49
|
-
<th>
|
|
50
|
-
<LabelLarge>xsmall</LabelLarge>
|
|
51
|
-
</th>
|
|
52
|
-
<th>
|
|
53
|
-
<LabelLarge>small</LabelLarge>
|
|
54
|
-
</th>
|
|
55
|
-
<th>
|
|
56
|
-
<LabelLarge>medium</LabelLarge>
|
|
57
|
-
</th>
|
|
58
|
-
<th>
|
|
59
|
-
<LabelLarge>large</LabelLarge>
|
|
60
|
-
</th>
|
|
61
|
-
</tr>
|
|
62
|
-
<tr>
|
|
63
|
-
<td>
|
|
64
|
-
<CircularSpinner size={"xsmall"} style={styles.distanced} />
|
|
65
|
-
</td>
|
|
66
|
-
<td>
|
|
67
|
-
<CircularSpinner size={"small"} style={styles.distanced} />
|
|
68
|
-
</td>
|
|
69
|
-
<td>
|
|
70
|
-
<CircularSpinner size={"medium"} style={styles.distanced} />
|
|
71
|
-
</td>
|
|
72
|
-
<td>
|
|
73
|
-
<CircularSpinner size={"large"} style={styles.distanced} />
|
|
74
|
-
</td>
|
|
75
|
-
</tr>
|
|
76
|
-
<tr className={css(styles.darkBackground)}>
|
|
77
|
-
<td>
|
|
78
|
-
<CircularSpinner
|
|
79
|
-
light={true}
|
|
80
|
-
size={"xsmall"}
|
|
81
|
-
style={styles.distanced}
|
|
82
|
-
/>
|
|
83
|
-
</td>
|
|
84
|
-
<td>
|
|
85
|
-
<CircularSpinner
|
|
86
|
-
light={true}
|
|
87
|
-
size={"small"}
|
|
88
|
-
style={styles.distanced}
|
|
89
|
-
/>
|
|
90
|
-
</td>
|
|
91
|
-
<td>
|
|
92
|
-
<CircularSpinner
|
|
93
|
-
light={true}
|
|
94
|
-
size={"medium"}
|
|
95
|
-
style={styles.distanced}
|
|
96
|
-
/>
|
|
97
|
-
</td>
|
|
98
|
-
<td>
|
|
99
|
-
<CircularSpinner
|
|
100
|
-
light={true}
|
|
101
|
-
size={"large"}
|
|
102
|
-
style={styles.distanced}
|
|
103
|
-
/>
|
|
104
|
-
</td>
|
|
105
|
-
</tr>
|
|
106
|
-
</tbody>
|
|
107
|
-
</table>
|
|
108
|
-
);
|
|
109
|
-
|
|
110
|
-
Sizes.parameters = {
|
|
111
|
-
docs: {
|
|
112
|
-
storyDescription: `The available sizes for progress spinner are
|
|
113
|
-
\`"xsmall"\`, \`"small"\`, \`"medium"\`, and \`"large"\`.
|
|
114
|
-
This is set with the \`size\` prop.`,
|
|
115
|
-
},
|
|
116
|
-
};
|
|
117
|
-
|
|
118
|
-
export const Light: StoryComponentType = () => <CircularSpinner light={true} />;
|
|
119
|
-
|
|
120
|
-
Light.parameters = {
|
|
121
|
-
backgrounds: {
|
|
122
|
-
default: "darkBlue",
|
|
123
|
-
},
|
|
124
|
-
docs: {
|
|
125
|
-
storyDescription: `This is a progress spinner with its \`light\`
|
|
126
|
-
prop set to true. This is for use on dark backgrounds.`,
|
|
127
|
-
},
|
|
128
|
-
};
|
|
129
|
-
|
|
130
|
-
export const Inline: StoryComponentType = () => (
|
|
131
|
-
<Body>
|
|
132
|
-
Inline inside{" "}
|
|
133
|
-
<CircularSpinner size="xsmall" style={{display: "inline"}} /> some text.
|
|
134
|
-
</Body>
|
|
135
|
-
);
|
|
136
|
-
|
|
137
|
-
Inline.parameters = {
|
|
138
|
-
docs: {
|
|
139
|
-
storyDescription: `Circular spinners also work inline.`,
|
|
140
|
-
},
|
|
141
|
-
};
|
|
142
|
-
|
|
143
|
-
export const WithStyle: StoryComponentType = () => {
|
|
144
|
-
const spinnerStyle = {
|
|
145
|
-
border: `solid 5px ${Color.teal}`,
|
|
146
|
-
borderRadius: "50%",
|
|
147
|
-
backgroundColor: Color.offWhite,
|
|
148
|
-
};
|
|
149
|
-
|
|
150
|
-
return <CircularSpinner style={spinnerStyle} />;
|
|
151
|
-
};
|
|
152
|
-
|
|
153
|
-
WithStyle.parameters = {
|
|
154
|
-
docs: {
|
|
155
|
-
storyDescription: `\`<CircularSpinner>\` has \`style\` prop
|
|
156
|
-
that can be used to apply styles to the spinner's container.
|
|
157
|
-
Here, it has been given a style that includes \`border\` that
|
|
158
|
-
is \`solid 5px \${Color.teal}\` as well as a \`borderRadius\`
|
|
159
|
-
of \`50%\`.`,
|
|
160
|
-
},
|
|
161
|
-
};
|
|
162
|
-
|
|
163
|
-
const styles = StyleSheet.create({
|
|
164
|
-
darkBackground: {
|
|
165
|
-
background: Color.darkBlue,
|
|
166
|
-
padding: Spacing.xLarge_32,
|
|
167
|
-
width: "100%",
|
|
168
|
-
alignItems: "center",
|
|
169
|
-
justifyContent: "center",
|
|
170
|
-
},
|
|
171
|
-
distanced: {
|
|
172
|
-
margin: Spacing.large_24,
|
|
173
|
-
},
|
|
174
|
-
example: {
|
|
175
|
-
alignItems: "center",
|
|
176
|
-
justifyContent: "center",
|
|
177
|
-
},
|
|
178
|
-
row: {
|
|
179
|
-
flexDirection: "row",
|
|
180
|
-
marginBottom: Spacing.xLarge_32,
|
|
181
|
-
},
|
|
182
|
-
});
|