@cerberus-design/react 0.18.0 → 0.18.2
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/build/legacy/_tsup-dts-rollup.d.cts +12 -5
- package/build/legacy/components/CircularProgress.cjs +92 -83
- package/build/legacy/components/CircularProgress.cjs.map +1 -1
- package/build/legacy/index.cjs +380 -378
- package/build/legacy/index.cjs.map +1 -1
- package/build/modern/_tsup-dts-rollup.d.ts +12 -5
- package/build/modern/{chunk-JFSCSAHD.js → chunk-25S67KZH.js} +4 -4
- package/build/modern/{chunk-URJ6JHLG.js → chunk-A5UXCB4L.js} +4 -4
- package/build/modern/{chunk-H2HP63H4.js → chunk-CJVKAGCJ.js} +4 -4
- package/build/modern/{chunk-TGY3RICC.js → chunk-KABRV6TB.js} +4 -4
- package/build/modern/chunk-PRV3HAK3.js +156 -0
- package/build/modern/chunk-PRV3HAK3.js.map +1 -0
- package/build/modern/{chunk-SDV6XUM6.js → chunk-RF4VKGOQ.js} +2 -2
- package/build/modern/{chunk-NYRNXRTZ.js → chunk-TS7PAQPV.js} +4 -4
- package/build/modern/{chunk-STCGFGTK.js → chunk-TV346AYO.js} +4 -4
- package/build/modern/{chunk-6DU5QBPR.js → chunk-UCVB2VOI.js} +4 -4
- package/build/modern/components/CircularProgress.js +2 -2
- package/build/modern/components/FileStatus.js +4 -4
- package/build/modern/components/Tag.js +2 -2
- package/build/modern/components/combobox/combobox.js +2 -2
- package/build/modern/components/combobox/index.js +2 -2
- package/build/modern/components/cta-dialog/index.js +5 -5
- package/build/modern/components/cta-dialog/provider.js +5 -5
- package/build/modern/components/date-picker/calendar.js +2 -2
- package/build/modern/components/date-picker/day-view.js +2 -2
- package/build/modern/components/date-picker/index.js +8 -8
- package/build/modern/components/date-picker/month-view.js +2 -2
- package/build/modern/components/date-picker/view-control-group.js +2 -2
- package/build/modern/components/date-picker/year-view.js +2 -2
- package/build/modern/components/deprecated/Label.js +1 -1
- package/build/modern/components/deprecated/NavMenuTrigger.js +2 -2
- package/build/modern/components/dialog/index.js +3 -3
- package/build/modern/components/field/index.js +3 -3
- package/build/modern/components/notifications/center.js +3 -3
- package/build/modern/components/notifications/index.js +4 -4
- package/build/modern/components/notifications/match-icon.js +2 -2
- package/build/modern/components/select/index.js +2 -2
- package/build/modern/components/select/select.js +2 -2
- package/build/modern/context/confirm-modal.js +3 -3
- package/build/modern/context/prompt-modal.js +4 -4
- package/build/modern/index.js +63 -63
- package/package.json +6 -7
- package/src/components/CircularProgress.tsx +79 -67
- package/build/modern/chunk-Q3LUIS3M.js +0 -153
- package/build/modern/chunk-Q3LUIS3M.js.map +0 -1
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- /package/build/modern/{chunk-JFSCSAHD.js.map → chunk-25S67KZH.js.map} +0 -0
- /package/build/modern/{chunk-URJ6JHLG.js.map → chunk-A5UXCB4L.js.map} +0 -0
- /package/build/modern/{chunk-H2HP63H4.js.map → chunk-CJVKAGCJ.js.map} +0 -0
- /package/build/modern/{chunk-TGY3RICC.js.map → chunk-KABRV6TB.js.map} +0 -0
- /package/build/modern/{chunk-SDV6XUM6.js.map → chunk-RF4VKGOQ.js.map} +0 -0
- /package/build/modern/{chunk-NYRNXRTZ.js.map → chunk-TS7PAQPV.js.map} +0 -0
- /package/build/modern/{chunk-STCGFGTK.js.map → chunk-TV346AYO.js.map} +0 -0
- /package/build/modern/{chunk-6DU5QBPR.js.map → chunk-UCVB2VOI.js.map} +0 -0
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { cq } from 'styled-system/patterns'
|
|
4
|
-
import { css } from 'styled-system/css'
|
|
1
|
+
import { circularProgress } from 'styled-system/recipes'
|
|
5
2
|
import type { SVGProps } from 'react'
|
|
6
3
|
import { Show } from './Show'
|
|
4
|
+
import { For } from './for'
|
|
7
5
|
|
|
8
6
|
/**
|
|
9
7
|
* This module contains the CircularProgress component.
|
|
@@ -35,6 +33,11 @@ export interface CircularProgressProps extends SVGProps<SVGSVGElement> {
|
|
|
35
33
|
* The background style of the CircularProgress
|
|
36
34
|
*/
|
|
37
35
|
bgStyle?: 'filled' | 'transparent'
|
|
36
|
+
/**
|
|
37
|
+
* The size of the CircularProgress
|
|
38
|
+
* @default '1.1em'
|
|
39
|
+
*/
|
|
40
|
+
size?: string
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
/**
|
|
@@ -50,12 +53,22 @@ export interface CircularProgressProps extends SVGProps<SVGSVGElement> {
|
|
|
50
53
|
* ```
|
|
51
54
|
*/
|
|
52
55
|
export function CircularProgress(props: CircularProgressProps) {
|
|
56
|
+
const { size = '1.1em' } = props
|
|
57
|
+
const sizeProps = props.size
|
|
58
|
+
? {
|
|
59
|
+
height: size,
|
|
60
|
+
width: size,
|
|
61
|
+
}
|
|
62
|
+
: {}
|
|
63
|
+
|
|
53
64
|
const strokeW: number = 14
|
|
54
65
|
const radius = `calc(50% * (1 - ${strokeW}/100))`
|
|
55
66
|
const status: string = props.syntax ?? 'Done'
|
|
56
67
|
const now: number = props.now >= 100 ? 100 : props.now
|
|
57
68
|
const bgStyle: string = props.bgStyle ?? 'filled'
|
|
58
69
|
|
|
70
|
+
const styles = circularProgress()
|
|
71
|
+
|
|
59
72
|
return (
|
|
60
73
|
<div
|
|
61
74
|
id={props.id}
|
|
@@ -63,29 +76,22 @@ export function CircularProgress(props: CircularProgressProps) {
|
|
|
63
76
|
aria-valuemin={0}
|
|
64
77
|
aria-valuemax={100}
|
|
65
78
|
aria-valuenow={now}
|
|
66
|
-
className={
|
|
67
|
-
alignSelf: 'stretch',
|
|
68
|
-
flex: 1,
|
|
69
|
-
m: '4px',
|
|
70
|
-
position: 'relative',
|
|
71
|
-
})}
|
|
79
|
+
className={styles.root}
|
|
72
80
|
role="progressbar"
|
|
73
81
|
>
|
|
74
82
|
<svg
|
|
75
83
|
data-complete={now === 100}
|
|
76
|
-
className={
|
|
77
|
-
display: 'block',
|
|
78
|
-
rounded: 'full',
|
|
79
|
-
transition: 'all 0.5s ease',
|
|
80
|
-
})}
|
|
84
|
+
className={styles.group}
|
|
81
85
|
fill="none"
|
|
82
86
|
strokeLinecap="round"
|
|
83
87
|
strokeWidth={strokeW}
|
|
84
88
|
viewBox="0 0 100 100"
|
|
85
89
|
xmlns="http://www.w3.org/2000/svg"
|
|
90
|
+
{...sizeProps}
|
|
86
91
|
>
|
|
87
92
|
<title>{props.title}</title>
|
|
88
93
|
<desc>{`${now}% ${status}`}</desc>
|
|
94
|
+
|
|
89
95
|
<defs>
|
|
90
96
|
<linearGradient id="gradient">
|
|
91
97
|
<stop
|
|
@@ -101,71 +107,77 @@ export function CircularProgress(props: CircularProgressProps) {
|
|
|
101
107
|
|
|
102
108
|
<Show when={bgStyle === 'filled'}>
|
|
103
109
|
<circle
|
|
104
|
-
className={
|
|
105
|
-
fill: 'page.surface.initial',
|
|
106
|
-
})}
|
|
110
|
+
className={styles.base}
|
|
107
111
|
cx="50%"
|
|
108
112
|
cy="50%"
|
|
109
113
|
r={`calc(50% * (1 - ${strokeW}/100))`}
|
|
110
114
|
pathLength="100"
|
|
111
115
|
/>
|
|
112
116
|
</Show>
|
|
117
|
+
|
|
113
118
|
<circle
|
|
114
|
-
className={
|
|
115
|
-
stroke: 'page.bg.100',
|
|
116
|
-
})}
|
|
117
|
-
cx="50%"
|
|
118
|
-
cy="50%"
|
|
119
|
-
r={radius}
|
|
120
|
-
pathLength="100"
|
|
121
|
-
/>
|
|
122
|
-
<circle
|
|
123
|
-
data-complete={now === 100}
|
|
124
|
-
className={css({
|
|
125
|
-
stroke: 'url(#gradient)',
|
|
126
|
-
transition: 'stroke-dashoffset, stroke 0.5s ease',
|
|
127
|
-
_isComplete: {
|
|
128
|
-
stroke: 'success.bg.initial',
|
|
129
|
-
},
|
|
130
|
-
})}
|
|
119
|
+
className={styles.track}
|
|
131
120
|
cx="50%"
|
|
132
121
|
cy="50%"
|
|
133
|
-
fill="none"
|
|
134
122
|
r={radius}
|
|
135
123
|
pathLength="100"
|
|
136
|
-
strokeDasharray="100"
|
|
137
|
-
strokeDashoffset={100 - now}
|
|
138
|
-
transform="rotate(-90 50 50)"
|
|
139
124
|
/>
|
|
140
125
|
|
|
141
|
-
<
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
126
|
+
<Show
|
|
127
|
+
when={now > 0}
|
|
128
|
+
fallback={
|
|
129
|
+
<text
|
|
130
|
+
data-fallback
|
|
131
|
+
className={styles.description}
|
|
132
|
+
x="50%"
|
|
133
|
+
y="27%"
|
|
134
|
+
dominantBaseline="middle"
|
|
135
|
+
textAnchor="middle"
|
|
136
|
+
textLength="65%"
|
|
137
|
+
>
|
|
138
|
+
<For each={status.split(' ')}>
|
|
139
|
+
{(word, idx) => (
|
|
140
|
+
<tspan key={`${word}:${idx}`} x="50%" dy="1.2em">
|
|
141
|
+
{word}
|
|
142
|
+
</tspan>
|
|
143
|
+
)}
|
|
144
|
+
</For>
|
|
145
|
+
</text>
|
|
146
|
+
}
|
|
147
|
+
>
|
|
148
|
+
<circle
|
|
149
|
+
data-complete={now === 100}
|
|
150
|
+
className={styles.path}
|
|
151
|
+
cx="50%"
|
|
152
|
+
cy="50%"
|
|
153
|
+
fill="none"
|
|
154
|
+
r={radius}
|
|
155
|
+
pathLength="100"
|
|
156
|
+
strokeDasharray="100"
|
|
157
|
+
strokeDashoffset={100 - now}
|
|
158
|
+
transform="rotate(-90 50 50)"
|
|
159
|
+
/>
|
|
160
|
+
<g>
|
|
161
|
+
<text
|
|
162
|
+
className={styles.title}
|
|
163
|
+
x="50%"
|
|
164
|
+
y="47%"
|
|
165
|
+
dominantBaseline="middle"
|
|
166
|
+
textAnchor="middle"
|
|
167
|
+
>
|
|
168
|
+
{now}%
|
|
169
|
+
</text>
|
|
170
|
+
<text
|
|
171
|
+
className={styles.description}
|
|
172
|
+
x="50%"
|
|
173
|
+
y="59%"
|
|
174
|
+
dominantBaseline="middle"
|
|
175
|
+
textAnchor="middle"
|
|
176
|
+
>
|
|
177
|
+
{status}
|
|
178
|
+
</text>
|
|
179
|
+
</g>
|
|
180
|
+
</Show>
|
|
169
181
|
</svg>
|
|
170
182
|
</div>
|
|
171
183
|
)
|
|
@@ -1,153 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Show
|
|
3
|
-
} from "./chunk-VEAC4I3F.js";
|
|
4
|
-
|
|
5
|
-
// src/components/CircularProgress.tsx
|
|
6
|
-
import { cq } from "styled-system/patterns";
|
|
7
|
-
import { css } from "styled-system/css";
|
|
8
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
|
-
function CircularProgress(props) {
|
|
10
|
-
const strokeW = 14;
|
|
11
|
-
const radius = `calc(50% * (1 - ${strokeW}/100))`;
|
|
12
|
-
const status = props.syntax ?? "Done";
|
|
13
|
-
const now = props.now >= 100 ? 100 : props.now;
|
|
14
|
-
const bgStyle = props.bgStyle ?? "filled";
|
|
15
|
-
return /* @__PURE__ */ jsx(
|
|
16
|
-
"div",
|
|
17
|
-
{
|
|
18
|
-
id: props.id,
|
|
19
|
-
"aria-label": props.label,
|
|
20
|
-
"aria-valuemin": 0,
|
|
21
|
-
"aria-valuemax": 100,
|
|
22
|
-
"aria-valuenow": now,
|
|
23
|
-
className: cq({
|
|
24
|
-
alignSelf: "stretch",
|
|
25
|
-
flex: 1,
|
|
26
|
-
m: "4px",
|
|
27
|
-
position: "relative"
|
|
28
|
-
}),
|
|
29
|
-
role: "progressbar",
|
|
30
|
-
children: /* @__PURE__ */ jsxs(
|
|
31
|
-
"svg",
|
|
32
|
-
{
|
|
33
|
-
"data-complete": now === 100,
|
|
34
|
-
className: css({
|
|
35
|
-
display: "block",
|
|
36
|
-
rounded: "full",
|
|
37
|
-
transition: "all 0.5s ease"
|
|
38
|
-
}),
|
|
39
|
-
fill: "none",
|
|
40
|
-
strokeLinecap: "round",
|
|
41
|
-
strokeWidth: strokeW,
|
|
42
|
-
viewBox: "0 0 100 100",
|
|
43
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
44
|
-
children: [
|
|
45
|
-
/* @__PURE__ */ jsx("title", { children: props.title }),
|
|
46
|
-
/* @__PURE__ */ jsx("desc", { children: `${now}% ${status}` }),
|
|
47
|
-
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs("linearGradient", { id: "gradient", children: [
|
|
48
|
-
/* @__PURE__ */ jsx(
|
|
49
|
-
"stop",
|
|
50
|
-
{
|
|
51
|
-
offset: "0%",
|
|
52
|
-
stopColor: "var(--cerberus-colors-data-viz-progress-start)"
|
|
53
|
-
}
|
|
54
|
-
),
|
|
55
|
-
/* @__PURE__ */ jsx(
|
|
56
|
-
"stop",
|
|
57
|
-
{
|
|
58
|
-
offset: "100%",
|
|
59
|
-
stopColor: "var(--cerberus-colors-data-viz-progress-end)"
|
|
60
|
-
}
|
|
61
|
-
)
|
|
62
|
-
] }) }),
|
|
63
|
-
/* @__PURE__ */ jsx(Show, { when: bgStyle === "filled", children: /* @__PURE__ */ jsx(
|
|
64
|
-
"circle",
|
|
65
|
-
{
|
|
66
|
-
className: css({
|
|
67
|
-
fill: "page.surface.initial"
|
|
68
|
-
}),
|
|
69
|
-
cx: "50%",
|
|
70
|
-
cy: "50%",
|
|
71
|
-
r: `calc(50% * (1 - ${strokeW}/100))`,
|
|
72
|
-
pathLength: "100"
|
|
73
|
-
}
|
|
74
|
-
) }),
|
|
75
|
-
/* @__PURE__ */ jsx(
|
|
76
|
-
"circle",
|
|
77
|
-
{
|
|
78
|
-
className: css({
|
|
79
|
-
stroke: "page.bg.100"
|
|
80
|
-
}),
|
|
81
|
-
cx: "50%",
|
|
82
|
-
cy: "50%",
|
|
83
|
-
r: radius,
|
|
84
|
-
pathLength: "100"
|
|
85
|
-
}
|
|
86
|
-
),
|
|
87
|
-
/* @__PURE__ */ jsx(
|
|
88
|
-
"circle",
|
|
89
|
-
{
|
|
90
|
-
"data-complete": now === 100,
|
|
91
|
-
className: css({
|
|
92
|
-
stroke: "url(#gradient)",
|
|
93
|
-
transition: "stroke-dashoffset, stroke 0.5s ease",
|
|
94
|
-
_isComplete: {
|
|
95
|
-
stroke: "success.bg.initial"
|
|
96
|
-
}
|
|
97
|
-
}),
|
|
98
|
-
cx: "50%",
|
|
99
|
-
cy: "50%",
|
|
100
|
-
fill: "none",
|
|
101
|
-
r: radius,
|
|
102
|
-
pathLength: "100",
|
|
103
|
-
strokeDasharray: "100",
|
|
104
|
-
strokeDashoffset: 100 - now,
|
|
105
|
-
transform: "rotate(-90 50 50)"
|
|
106
|
-
}
|
|
107
|
-
),
|
|
108
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
109
|
-
/* @__PURE__ */ jsxs(
|
|
110
|
-
"text",
|
|
111
|
-
{
|
|
112
|
-
className: css({
|
|
113
|
-
fill: "page.text.initial",
|
|
114
|
-
fontFamily: "mono",
|
|
115
|
-
textStyle: "1.25rem"
|
|
116
|
-
}),
|
|
117
|
-
x: "50%",
|
|
118
|
-
y: "47%",
|
|
119
|
-
dominantBaseline: "middle",
|
|
120
|
-
textAnchor: "middle",
|
|
121
|
-
children: [
|
|
122
|
-
now,
|
|
123
|
-
"%"
|
|
124
|
-
]
|
|
125
|
-
}
|
|
126
|
-
),
|
|
127
|
-
/* @__PURE__ */ jsx(
|
|
128
|
-
"text",
|
|
129
|
-
{
|
|
130
|
-
className: css({
|
|
131
|
-
fill: "page.text.100",
|
|
132
|
-
fontSize: "0.5rem",
|
|
133
|
-
fontWeight: 600
|
|
134
|
-
}),
|
|
135
|
-
x: "50%",
|
|
136
|
-
y: "59%",
|
|
137
|
-
dominantBaseline: "middle",
|
|
138
|
-
textAnchor: "middle",
|
|
139
|
-
children: status
|
|
140
|
-
}
|
|
141
|
-
)
|
|
142
|
-
] })
|
|
143
|
-
]
|
|
144
|
-
}
|
|
145
|
-
)
|
|
146
|
-
}
|
|
147
|
-
);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
export {
|
|
151
|
-
CircularProgress
|
|
152
|
-
};
|
|
153
|
-
//# sourceMappingURL=chunk-Q3LUIS3M.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/CircularProgress.tsx"],"sourcesContent":["'use client'\n\nimport { cq } from 'styled-system/patterns'\nimport { css } from 'styled-system/css'\nimport type { SVGProps } from 'react'\nimport { Show } from './Show'\n\n/**\n * This module contains the CircularProgress component.\n * @module\n */\n\nexport interface CircularProgressProps extends SVGProps<SVGSVGElement> {\n /**\n * A unique identifier for the progress bar. Required for accessibility.\n */\n id: string\n /**\n * A description label for the progress bar. Required for accessibility.\n */\n label: string\n /**\n * The current value of the CircularProgress\n */\n now: number\n /**\n * The title of the CircularProgress for a11y\n */\n title: string\n /**\n * What is shown below the now value (default: 'Done')\n */\n syntax?: string\n /**\n * The background style of the CircularProgress\n */\n bgStyle?: 'filled' | 'transparent'\n}\n\n/**\n * The CircularProgress component is used to display a loading indicator.\n * @param props - SVG element attributes\n * @param props.now - The current value of the CircularProgress\n * @param props.title - The title of the CircularProgress for a11y\n * @param props.label - What is shown below the now value (default: 'Done')\n * @see https://cerberus.digitalu.design/react/progress-indicators\n * @example\n * ```tsx\n * <CircularProgress now={24} title=\"Course completion\" label=\"done\" />\n * ```\n */\nexport function CircularProgress(props: CircularProgressProps) {\n const strokeW: number = 14\n const radius = `calc(50% * (1 - ${strokeW}/100))`\n const status: string = props.syntax ?? 'Done'\n const now: number = props.now >= 100 ? 100 : props.now\n const bgStyle: string = props.bgStyle ?? 'filled'\n\n return (\n <div\n id={props.id}\n aria-label={props.label}\n aria-valuemin={0}\n aria-valuemax={100}\n aria-valuenow={now}\n className={cq({\n alignSelf: 'stretch',\n flex: 1,\n m: '4px',\n position: 'relative',\n })}\n role=\"progressbar\"\n >\n <svg\n data-complete={now === 100}\n className={css({\n display: 'block',\n rounded: 'full',\n transition: 'all 0.5s ease',\n })}\n fill=\"none\"\n strokeLinecap=\"round\"\n strokeWidth={strokeW}\n viewBox=\"0 0 100 100\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <title>{props.title}</title>\n <desc>{`${now}% ${status}`}</desc>\n <defs>\n <linearGradient id=\"gradient\">\n <stop\n offset=\"0%\"\n stopColor=\"var(--cerberus-colors-data-viz-progress-start)\"\n />\n <stop\n offset=\"100%\"\n stopColor=\"var(--cerberus-colors-data-viz-progress-end)\"\n />\n </linearGradient>\n </defs>\n\n <Show when={bgStyle === 'filled'}>\n <circle\n className={css({\n fill: 'page.surface.initial',\n })}\n cx=\"50%\"\n cy=\"50%\"\n r={`calc(50% * (1 - ${strokeW}/100))`}\n pathLength=\"100\"\n />\n </Show>\n <circle\n className={css({\n stroke: 'page.bg.100',\n })}\n cx=\"50%\"\n cy=\"50%\"\n r={radius}\n pathLength=\"100\"\n />\n <circle\n data-complete={now === 100}\n className={css({\n stroke: 'url(#gradient)',\n transition: 'stroke-dashoffset, stroke 0.5s ease',\n _isComplete: {\n stroke: 'success.bg.initial',\n },\n })}\n cx=\"50%\"\n cy=\"50%\"\n fill=\"none\"\n r={radius}\n pathLength=\"100\"\n strokeDasharray=\"100\"\n strokeDashoffset={100 - now}\n transform=\"rotate(-90 50 50)\"\n />\n\n <g>\n <text\n className={css({\n fill: 'page.text.initial',\n fontFamily: 'mono',\n textStyle: '1.25rem',\n })}\n x=\"50%\"\n y=\"47%\"\n dominantBaseline=\"middle\"\n textAnchor=\"middle\"\n >\n {now}%\n </text>\n <text\n className={css({\n fill: 'page.text.100',\n fontSize: '0.5rem',\n fontWeight: 600,\n })}\n x=\"50%\"\n y=\"59%\"\n dominantBaseline=\"middle\"\n textAnchor=\"middle\"\n >\n {status}\n </text>\n </g>\n </svg>\n </div>\n )\n}\n"],"mappings":"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","names":[]}
|
package/src/.DS_Store
DELETED
|
Binary file
|
package/src/components/.DS_Store
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|