@autobe/ui 0.29.2 → 0.30.0-dev.20260315

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.
Files changed (151) hide show
  1. package/LICENSE +661 -661
  2. package/README.md +261 -0
  3. package/lib/components/AutoBeChatMain.js +5 -5
  4. package/lib/components/AutoBeChatMain.js.map +1 -1
  5. package/lib/components/AutoBeConfigModal.js +9 -9
  6. package/lib/components/AutoBeStatusModal.js +4 -4
  7. package/lib/components/AutoBeStatusModal.js.map +1 -1
  8. package/lib/components/AutoBeUserMessageMovie.d.ts +2 -2
  9. package/lib/components/common/ChatBubble.d.ts +2 -2
  10. package/lib/components/common/openai/OpenAIContent.d.ts +2 -2
  11. package/lib/components/common/openai/OpenAIContent.js.map +1 -1
  12. package/lib/components/common/openai/OpenAIUserAudioContent.js +1 -1
  13. package/lib/components/common/openai/OpenAIUserAudioContent.js.map +1 -1
  14. package/lib/components/common/openai/OpenAIUserFileContent.js +1 -1
  15. package/lib/components/common/openai/OpenAIUserFileContent.js.map +1 -1
  16. package/lib/components/common/openai/OpenAIUserImageContent.d.ts +2 -2
  17. package/lib/components/events/AutoBeCompleteEventMovie.d.ts +2 -2
  18. package/lib/components/events/AutoBeCompleteEventMovie.js +5 -5
  19. package/lib/components/events/AutoBeCompleteEventMovie.js.map +1 -1
  20. package/lib/components/events/AutoBeCorrectEventMovie.d.ts +2 -2
  21. package/lib/components/events/AutoBeCorrectEventMovie.js +4 -4
  22. package/lib/components/events/AutoBeCorrectEventMovie.js.map +1 -1
  23. package/lib/components/events/AutoBeEventMovie.js +38 -17
  24. package/lib/components/events/AutoBeEventMovie.js.map +1 -1
  25. package/lib/components/events/AutoBeProgressEventMovie.js +73 -13
  26. package/lib/components/events/AutoBeProgressEventMovie.js.map +1 -1
  27. package/lib/components/events/AutoBeScenarioEventMovie.d.ts +2 -2
  28. package/lib/components/events/AutoBeScenarioEventMovie.js +18 -5
  29. package/lib/components/events/AutoBeScenarioEventMovie.js.map +1 -1
  30. package/lib/components/events/AutoBeStartEventMovie.d.ts +2 -2
  31. package/lib/components/events/AutoBeStartEventMovie.js +2 -2
  32. package/lib/components/events/AutoBeStartEventMovie.js.map +1 -1
  33. package/lib/components/events/AutoBeValidateEventMovie.d.ts +2 -2
  34. package/lib/components/events/AutoBeValidateEventMovie.js +3 -11
  35. package/lib/components/events/AutoBeValidateEventMovie.js.map +1 -1
  36. package/lib/components/events/groups/CorrectEventGroup.d.ts +2 -2
  37. package/lib/components/events/groups/CorrectEventGroup.js +1 -1
  38. package/lib/components/events/groups/CorrectEventGroup.js.map +1 -1
  39. package/lib/components/events/groups/ValidateEventGroup.d.ts +2 -2
  40. package/lib/components/events/groups/ValidateEventGroup.js +1 -2
  41. package/lib/components/events/groups/ValidateEventGroup.js.map +1 -1
  42. package/lib/components/events/utils/eventGrouper.js +1 -2
  43. package/lib/components/events/utils/eventGrouper.js.map +1 -1
  44. package/lib/components/upload/AutoBeChatUploadBox.d.ts +3 -4
  45. package/lib/components/upload/AutoBeChatUploadBox.js +2 -1
  46. package/lib/components/upload/AutoBeChatUploadBox.js.map +1 -1
  47. package/lib/components/upload/AutoBeChatUploadSendButton.js +1 -1
  48. package/lib/components/upload/AutoBeChatUploadSendButton.js.map +1 -1
  49. package/lib/context/AutoBeAgentContext.d.ts +1 -3
  50. package/lib/context/AutoBeAgentContext.js +0 -4
  51. package/lib/context/AutoBeAgentContext.js.map +1 -1
  52. package/lib/hooks/useSessionStorage.d.ts +4 -0
  53. package/lib/hooks/useSessionStorage.js +16 -0
  54. package/lib/hooks/useSessionStorage.js.map +1 -0
  55. package/lib/index.d.ts +1 -0
  56. package/lib/index.js +1 -0
  57. package/lib/index.js.map +1 -1
  58. package/lib/strategy/AutoBeAgentSessionStorageStrategy.d.ts +10 -0
  59. package/lib/strategy/AutoBeAgentSessionStorageStrategy.js +117 -0
  60. package/lib/strategy/AutoBeAgentSessionStorageStrategy.js.map +1 -0
  61. package/lib/structure/AutoBeListener.js +91 -23
  62. package/lib/structure/AutoBeListener.js.map +1 -1
  63. package/lib/structure/AutoBeListenerState.d.ts +3 -3
  64. package/lib/structure/AutoBeListenerState.js +4 -4
  65. package/lib/structure/AutoBeListenerState.js.map +1 -1
  66. package/lib/structure/IAutoBeAgentSessionStorageStrategy.js +1 -1
  67. package/lib/structure/IAutoBeAgentSessionStorageStrategy.js.map +1 -1
  68. package/lib/utils/AutoBeFileUploader.d.ts +2 -2
  69. package/lib/utils/AutoBeFileUploader.js.map +1 -1
  70. package/package.json +3 -4
  71. package/src/components/AutoBeAssistantMessageMovie.tsx +22 -22
  72. package/src/components/AutoBeChatMain.tsx +376 -376
  73. package/src/components/AutoBeChatSidebar.tsx +414 -414
  74. package/src/components/AutoBeConfigButton.tsx +83 -83
  75. package/src/components/AutoBeConfigModal.tsx +443 -443
  76. package/src/components/AutoBeStatusButton.tsx +75 -75
  77. package/src/components/AutoBeStatusModal.tsx +486 -484
  78. package/src/components/AutoBeUserMessageMovie.tsx +27 -27
  79. package/src/components/common/ActionButton.tsx +205 -205
  80. package/src/components/common/ActionButtonGroup.tsx +80 -80
  81. package/src/components/common/AutoBeConfigInput.tsx +185 -185
  82. package/src/components/common/ChatBubble.tsx +119 -119
  83. package/src/components/common/Collapsible.tsx +95 -95
  84. package/src/components/common/CompactSessionIndicator.tsx +73 -73
  85. package/src/components/common/CompactSessionList.tsx +82 -82
  86. package/src/components/common/index.ts +8 -8
  87. package/src/components/common/openai/OpenAIContent.tsx +53 -53
  88. package/src/components/common/openai/OpenAIUserAudioContent.tsx +70 -70
  89. package/src/components/common/openai/OpenAIUserFileContent.tsx +76 -76
  90. package/src/components/common/openai/OpenAIUserImageContent.tsx +34 -34
  91. package/src/components/common/openai/OpenAIUserTextContent.tsx +15 -15
  92. package/src/components/common/openai/index.ts +5 -5
  93. package/src/components/events/AutoBeCompleteEventMovie.tsx +402 -402
  94. package/src/components/events/AutoBeCorrectEventMovie.tsx +354 -368
  95. package/src/components/events/AutoBeEventGroupMovie.tsx +18 -18
  96. package/src/components/events/AutoBeEventMovie.tsx +158 -139
  97. package/src/components/events/AutoBeProgressEventMovie.tsx +217 -157
  98. package/src/components/events/AutoBeScenarioEventMovie.tsx +135 -95
  99. package/src/components/events/AutoBeStartEventMovie.tsx +82 -82
  100. package/src/components/events/AutoBeValidateEventMovie.tsx +249 -286
  101. package/src/components/events/README.md +300 -300
  102. package/src/components/events/common/CollapsibleEventGroup.tsx +211 -211
  103. package/src/components/events/common/EventCard.tsx +61 -61
  104. package/src/components/events/common/EventContent.tsx +31 -31
  105. package/src/components/events/common/EventHeader.tsx +85 -85
  106. package/src/components/events/common/EventIcon.tsx +82 -82
  107. package/src/components/events/common/ProgressBar.tsx +64 -64
  108. package/src/components/events/common/index.ts +13 -13
  109. package/src/components/events/groups/CorrectEventGroup.tsx +183 -183
  110. package/src/components/events/groups/ValidateEventGroup.tsx +143 -146
  111. package/src/components/events/groups/index.ts +8 -8
  112. package/src/components/events/index.ts +16 -16
  113. package/src/components/events/utils/eventGrouper.tsx +116 -117
  114. package/src/components/events/utils/index.ts +1 -1
  115. package/src/components/index.ts +13 -13
  116. package/src/components/upload/AutoBeChatUploadBox.tsx +425 -424
  117. package/src/components/upload/AutoBeChatUploadSendButton.tsx +66 -66
  118. package/src/components/upload/AutoBeFileUploadBox.tsx +123 -123
  119. package/src/components/upload/AutoBeUploadConfig.ts +5 -5
  120. package/src/components/upload/AutoBeVoiceRecoderButton.tsx +100 -100
  121. package/src/components/upload/index.ts +5 -5
  122. package/src/constant/color.ts +28 -28
  123. package/src/context/AutoBeAgentContext.tsx +245 -258
  124. package/src/context/AutoBeAgentSessionList.tsx +58 -58
  125. package/src/context/SearchParamsContext.tsx +49 -49
  126. package/src/hooks/index.ts +3 -3
  127. package/src/hooks/useEscapeKey.ts +24 -24
  128. package/src/hooks/useIsomorphicLayoutEffect.ts +8 -8
  129. package/src/hooks/useMediaQuery.ts +73 -73
  130. package/src/hooks/useSessionStorage.ts +10 -0
  131. package/src/icons/Receipt.tsx +74 -74
  132. package/src/index.ts +9 -8
  133. package/src/strategy/AutoBeAgentSessionStorageStrategy.ts +127 -0
  134. package/src/structure/AutoBeListener.ts +373 -304
  135. package/src/structure/AutoBeListenerState.ts +53 -53
  136. package/src/structure/IAutoBeAgentSessionStorageStrategy.ts +87 -87
  137. package/src/structure/IAutoBeEventGroup.ts +6 -6
  138. package/src/structure/index.ts +4 -4
  139. package/src/types/config.ts +44 -44
  140. package/src/types/index.ts +1 -1
  141. package/src/utils/AutoBeFileUploader.ts +279 -279
  142. package/src/utils/AutoBeVoiceRecorder.ts +95 -95
  143. package/src/utils/__tests__/crypto.test.ts +286 -286
  144. package/src/utils/__tests__/storage.test.ts +229 -229
  145. package/src/utils/crypto.ts +95 -95
  146. package/src/utils/index.ts +6 -6
  147. package/src/utils/number.ts +17 -17
  148. package/src/utils/storage.ts +96 -96
  149. package/src/utils/time.ts +14 -14
  150. package/tsconfig.json +9 -9
  151. package/vitest.config.ts +15 -15
@@ -1,85 +1,85 @@
1
- import { ReactNode } from "react";
2
-
3
- import { formatTime } from "../../../utils/time";
4
- import { EventIcon, EventIconType } from "./EventIcon";
5
-
6
- export interface IEventHeaderProps {
7
- title: string;
8
- subtitle?: ReactNode;
9
- timestamp: string;
10
- iconType: EventIconType;
11
- step?: number;
12
- }
13
-
14
- /**
15
- * Common event header component Provides consistent header layout with icon,
16
- * title, and timestamp
17
- */
18
- export const EventHeader = (props: IEventHeaderProps) => {
19
- return (
20
- <div
21
- style={{
22
- display: "flex",
23
- alignItems: "center",
24
- justifyContent: "space-between",
25
- marginBottom: "1rem",
26
- }}
27
- >
28
- <div
29
- style={{
30
- display: "flex",
31
- alignItems: "center",
32
- gap: "0.75rem",
33
- }}
34
- >
35
- <EventIcon type={props.iconType} />
36
-
37
- <div>
38
- <h3
39
- style={{
40
- fontSize: "1.125rem",
41
- fontWeight: "600",
42
- color: "#1e293b",
43
- margin: 0,
44
- marginBottom: "0.25rem",
45
- }}
46
- >
47
- {props.title}
48
- </h3>
49
- {props.subtitle && (
50
- <div
51
- style={{
52
- fontSize: "0.75rem",
53
- color: "#64748b",
54
- }}
55
- >
56
- {props.subtitle}
57
- </div>
58
- )}
59
- {props.step !== undefined && (
60
- <div
61
- style={{
62
- fontSize: "0.75rem",
63
- color: "#64748b",
64
- }}
65
- >
66
- Step #{props.step}
67
- </div>
68
- )}
69
- </div>
70
- </div>
71
-
72
- <div
73
- style={{
74
- fontSize: "0.75rem",
75
- color: "#64748b",
76
- textAlign: "right",
77
- }}
78
- >
79
- {formatTime(props.timestamp)}
80
- </div>
81
- </div>
82
- );
83
- };
84
-
85
- export default EventHeader;
1
+ import { ReactNode } from "react";
2
+
3
+ import { formatTime } from "../../../utils/time";
4
+ import { EventIcon, EventIconType } from "./EventIcon";
5
+
6
+ export interface IEventHeaderProps {
7
+ title: string;
8
+ subtitle?: ReactNode;
9
+ timestamp: string;
10
+ iconType: EventIconType;
11
+ step?: number;
12
+ }
13
+
14
+ /**
15
+ * Common event header component Provides consistent header layout with icon,
16
+ * title, and timestamp
17
+ */
18
+ export const EventHeader = (props: IEventHeaderProps) => {
19
+ return (
20
+ <div
21
+ style={{
22
+ display: "flex",
23
+ alignItems: "center",
24
+ justifyContent: "space-between",
25
+ marginBottom: "1rem",
26
+ }}
27
+ >
28
+ <div
29
+ style={{
30
+ display: "flex",
31
+ alignItems: "center",
32
+ gap: "0.75rem",
33
+ }}
34
+ >
35
+ <EventIcon type={props.iconType} />
36
+
37
+ <div>
38
+ <h3
39
+ style={{
40
+ fontSize: "1.125rem",
41
+ fontWeight: "600",
42
+ color: "#1e293b",
43
+ margin: 0,
44
+ marginBottom: "0.25rem",
45
+ }}
46
+ >
47
+ {props.title}
48
+ </h3>
49
+ {props.subtitle && (
50
+ <div
51
+ style={{
52
+ fontSize: "0.75rem",
53
+ color: "#64748b",
54
+ }}
55
+ >
56
+ {props.subtitle}
57
+ </div>
58
+ )}
59
+ {props.step !== undefined && (
60
+ <div
61
+ style={{
62
+ fontSize: "0.75rem",
63
+ color: "#64748b",
64
+ }}
65
+ >
66
+ Step #{props.step}
67
+ </div>
68
+ )}
69
+ </div>
70
+ </div>
71
+
72
+ <div
73
+ style={{
74
+ fontSize: "0.75rem",
75
+ color: "#64748b",
76
+ textAlign: "right",
77
+ }}
78
+ >
79
+ {formatTime(props.timestamp)}
80
+ </div>
81
+ </div>
82
+ );
83
+ };
84
+
85
+ export default EventHeader;
@@ -1,82 +1,82 @@
1
- export type EventIconType =
2
- | "success"
3
- | "progress"
4
- | "warning"
5
- | "error"
6
- | "info"
7
- | "start";
8
-
9
- export interface IEventIconProps {
10
- type: EventIconType;
11
- size?: number;
12
- }
13
-
14
- const ICON_CONFIGS = {
15
- success: {
16
- backgroundColor: "#4caf50",
17
- icon: (
18
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
19
- ),
20
- },
21
- progress: {
22
- backgroundColor: "#4caf50",
23
- icon: (
24
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
25
- ),
26
- },
27
- warning: {
28
- backgroundColor: "#f59e0b",
29
- icon: <path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" />,
30
- },
31
- error: {
32
- backgroundColor: "#ef4444",
33
- icon: (
34
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.5 6L12 10.5 8.5 8 7 9.5 10.5 12 7 15.5 8.5 17 12 13.5 15.5 17 17 15.5 13.5 12 17 8.5 15.5 7z" />
35
- ),
36
- },
37
- info: {
38
- backgroundColor: "#3b82f6",
39
- icon: (
40
- <path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
41
- ),
42
- },
43
- start: {
44
- backgroundColor: "#10b981",
45
- icon: <path d="M8 5v14l11-7z" />,
46
- },
47
- } as const;
48
-
49
- /**
50
- * Common event icon component Provides consistent icon styling across all event
51
- * components
52
- */
53
- export const EventIcon = (props: IEventIconProps) => {
54
- const { type, size = 16 } = props;
55
- const config = ICON_CONFIGS[type];
56
-
57
- return (
58
- <div
59
- style={{
60
- width: "2rem",
61
- height: "2rem",
62
- backgroundColor: config.backgroundColor,
63
- borderRadius: "50%",
64
- display: "flex",
65
- alignItems: "center",
66
- justifyContent: "center",
67
- }}
68
- >
69
- <svg
70
- width={size}
71
- height={size}
72
- viewBox="0 0 24 24"
73
- fill="currentColor"
74
- style={{ color: "#ffffff" }}
75
- >
76
- {config.icon}
77
- </svg>
78
- </div>
79
- );
80
- };
81
-
82
- export default EventIcon;
1
+ export type EventIconType =
2
+ | "success"
3
+ | "progress"
4
+ | "warning"
5
+ | "error"
6
+ | "info"
7
+ | "start";
8
+
9
+ export interface IEventIconProps {
10
+ type: EventIconType;
11
+ size?: number;
12
+ }
13
+
14
+ const ICON_CONFIGS = {
15
+ success: {
16
+ backgroundColor: "#4caf50",
17
+ icon: (
18
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
19
+ ),
20
+ },
21
+ progress: {
22
+ backgroundColor: "#4caf50",
23
+ icon: (
24
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
25
+ ),
26
+ },
27
+ warning: {
28
+ backgroundColor: "#f59e0b",
29
+ icon: <path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" />,
30
+ },
31
+ error: {
32
+ backgroundColor: "#ef4444",
33
+ icon: (
34
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.5 6L12 10.5 8.5 8 7 9.5 10.5 12 7 15.5 8.5 17 12 13.5 15.5 17 17 15.5 13.5 12 17 8.5 15.5 7z" />
35
+ ),
36
+ },
37
+ info: {
38
+ backgroundColor: "#3b82f6",
39
+ icon: (
40
+ <path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
41
+ ),
42
+ },
43
+ start: {
44
+ backgroundColor: "#10b981",
45
+ icon: <path d="M8 5v14l11-7z" />,
46
+ },
47
+ } as const;
48
+
49
+ /**
50
+ * Common event icon component Provides consistent icon styling across all event
51
+ * components
52
+ */
53
+ export const EventIcon = (props: IEventIconProps) => {
54
+ const { type, size = 16 } = props;
55
+ const config = ICON_CONFIGS[type];
56
+
57
+ return (
58
+ <div
59
+ style={{
60
+ width: "2rem",
61
+ height: "2rem",
62
+ backgroundColor: config.backgroundColor,
63
+ borderRadius: "50%",
64
+ display: "flex",
65
+ alignItems: "center",
66
+ justifyContent: "center",
67
+ }}
68
+ >
69
+ <svg
70
+ width={size}
71
+ height={size}
72
+ viewBox="0 0 24 24"
73
+ fill="currentColor"
74
+ style={{ color: "#ffffff" }}
75
+ >
76
+ {config.icon}
77
+ </svg>
78
+ </div>
79
+ );
80
+ };
81
+
82
+ export default EventIcon;
@@ -1,64 +1,64 @@
1
- export interface IProgressBarProps {
2
- current: number;
3
- total: number;
4
- color?: string;
5
- backgroundColor?: string;
6
- height?: string;
7
- showLabel?: boolean;
8
- }
9
-
10
- /**
11
- * Common progress bar component Provides consistent progress visualization
12
- * across event components
13
- */
14
- export const ProgressBar = (props: IProgressBarProps) => {
15
- const {
16
- current,
17
- total,
18
- color = "#4caf50",
19
- backgroundColor = "#e2e8f0",
20
- height = "10px",
21
- showLabel = true,
22
- } = props;
23
-
24
- const calibratedCurrent = current > total ? total : current;
25
- const percentage = Math.round((calibratedCurrent / total) * 100);
26
-
27
- return (
28
- <>
29
- <div
30
- style={{
31
- width: "100%",
32
- height,
33
- backgroundColor,
34
- borderRadius: "10px",
35
- overflow: "hidden",
36
- marginBottom: showLabel ? "0.5rem" : "0",
37
- }}
38
- >
39
- <div
40
- style={{
41
- width: `${percentage}%`,
42
- height: "100%",
43
- backgroundColor: color,
44
- borderRadius: "10px",
45
- transition: "width 0.3s ease",
46
- }}
47
- />
48
- </div>
49
- {showLabel && (
50
- <div
51
- style={{
52
- fontSize: "0.75rem",
53
- color: "#64748b",
54
- textAlign: "center",
55
- }}
56
- >
57
- {calibratedCurrent} / {total} completed
58
- </div>
59
- )}
60
- </>
61
- );
62
- };
63
-
64
- export default ProgressBar;
1
+ export interface IProgressBarProps {
2
+ current: number;
3
+ total: number;
4
+ color?: string;
5
+ backgroundColor?: string;
6
+ height?: string;
7
+ showLabel?: boolean;
8
+ }
9
+
10
+ /**
11
+ * Common progress bar component Provides consistent progress visualization
12
+ * across event components
13
+ */
14
+ export const ProgressBar = (props: IProgressBarProps) => {
15
+ const {
16
+ current,
17
+ total,
18
+ color = "#4caf50",
19
+ backgroundColor = "#e2e8f0",
20
+ height = "10px",
21
+ showLabel = true,
22
+ } = props;
23
+
24
+ const calibratedCurrent = current > total ? total : current;
25
+ const percentage = Math.round((calibratedCurrent / total) * 100);
26
+
27
+ return (
28
+ <>
29
+ <div
30
+ style={{
31
+ width: "100%",
32
+ height,
33
+ backgroundColor,
34
+ borderRadius: "10px",
35
+ overflow: "hidden",
36
+ marginBottom: showLabel ? "0.5rem" : "0",
37
+ }}
38
+ >
39
+ <div
40
+ style={{
41
+ width: `${percentage}%`,
42
+ height: "100%",
43
+ backgroundColor: color,
44
+ borderRadius: "10px",
45
+ transition: "width 0.3s ease",
46
+ }}
47
+ />
48
+ </div>
49
+ {showLabel && (
50
+ <div
51
+ style={{
52
+ fontSize: "0.75rem",
53
+ color: "#64748b",
54
+ textAlign: "center",
55
+ }}
56
+ >
57
+ {calibratedCurrent} / {total} completed
58
+ </div>
59
+ )}
60
+ </>
61
+ );
62
+ };
63
+
64
+ export default ProgressBar;
@@ -1,13 +1,13 @@
1
- export { EventCard, type IEventCardProps } from "./EventCard";
2
- export {
3
- EventIcon,
4
- type EventIconType,
5
- type IEventIconProps,
6
- } from "./EventIcon";
7
- export { EventHeader, type IEventHeaderProps } from "./EventHeader";
8
- export { EventContent, type IEventContentProps } from "./EventContent";
9
- export { ProgressBar, type IProgressBarProps } from "./ProgressBar";
10
- export {
11
- CollapsibleEventGroup,
12
- type ICollapsibleEventGroupProps,
13
- } from "./CollapsibleEventGroup";
1
+ export { EventCard, type IEventCardProps } from "./EventCard";
2
+ export {
3
+ EventIcon,
4
+ type EventIconType,
5
+ type IEventIconProps,
6
+ } from "./EventIcon";
7
+ export { EventHeader, type IEventHeaderProps } from "./EventHeader";
8
+ export { EventContent, type IEventContentProps } from "./EventContent";
9
+ export { ProgressBar, type IProgressBarProps } from "./ProgressBar";
10
+ export {
11
+ CollapsibleEventGroup,
12
+ type ICollapsibleEventGroupProps,
13
+ } from "./CollapsibleEventGroup";