cmcts-c-agent-embedding 1.0.30-cagent → 1.0.31-cagent
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/auggie_shell_conversation.txt +23 -163
- package/auggie_shell_user_request.txt +26 -9
- package/dist/components/bubbles/BotBubble.d.ts.map +1 -1
- package/dist/components/bubbles/ChartPlaceholder.d.ts +4 -2
- package/dist/components/bubbles/ChartPlaceholder.d.ts.map +1 -1
- package/dist/components/bubbles/StableChartWrapper.d.ts +4 -2
- package/dist/components/bubbles/StableChartWrapper.d.ts.map +1 -1
- package/dist/web.js +1 -1
- package/package.json +1 -1
|
@@ -1,172 +1,32 @@
|
|
|
1
1
|
================================================================================
|
|
2
|
-
[2025-12-
|
|
3
|
-
|
|
2
|
+
[2025-12-02T06:59:37.579Z]
|
|
3
|
+
Fix bug: Chart displays "loading chart..." but never renders the actual chart - requires page reload to display.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
- Currently, the fullscreen button shows when `props.config` exists
|
|
8
|
-
- Need to add an `isStreaming` prop to ChartPlaceholder and only show the button when `props.config && !props.isStreaming`
|
|
9
|
-
- Update BotBubble.tsx to pass the streaming state when rendering ChartPlaceholder
|
|
5
|
+
## Problem Description
|
|
6
|
+
When streaming a message containing a chart tag (`<chart>...</chart>`), the chart placeholder shows loading state but never transitions to render the actual chart. User must reload the page for the chart to display correctly.
|
|
10
7
|
|
|
11
|
-
|
|
8
|
+
## Key Components Involved
|
|
9
|
+
- `src/components/Bot.tsx`: Manages `pendingCharts` and `completedCharts` signals during streaming
|
|
10
|
+
- `src/components/bubbles/BotBubble.tsx`: Calls `initializeChartPlaceholders()` to render charts
|
|
11
|
+
- `src/components/bubbles/StableChartWrapper.tsx`: Uses polling mechanism with `requestAnimationFrame` to check for config
|
|
12
|
+
- `src/components/bubbles/ChartPlaceholder.tsx`: Wrapper component with loading/chart states
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
================================================================================
|
|
16
|
-
[2025-12-02T04:03:09.885Z]
|
|
17
|
-
Fix the issue where the fullscreen button in ChartPlaceholder doesn't appear after streaming completes.
|
|
18
|
-
|
|
19
|
-
The problem: In BotBubble.tsx, when `renderChartPlaceholder` is called, it passes `isStreaming` as a static boolean value. This value is captured at render time and doesn't update when streaming finishes.
|
|
20
|
-
|
|
21
|
-
Solution approach:
|
|
22
|
-
1. Instead of passing `isStreaming` as a static boolean, pass it as a getter function `() => props.isLoading` so it remains reactive
|
|
23
|
-
2. Update ChartPlaceholder to accept `isStreaming` as either boolean or getter function, or change to use a getter pattern
|
|
24
|
-
3. The Show condition should call the getter to get the current streaming state
|
|
25
|
-
|
|
26
|
-
Look at how other props are handled reactively in SolidJS when using the `render()` function to mount components.
|
|
27
|
-
|
|
28
|
-
Do not create or modify any markdown document files or code examples. After making changes, run `yarn run lint-fix && yarn run type-check` to validate.
|
|
29
|
-
|
|
30
|
-
================================================================================
|
|
31
|
-
[2025-12-02T04:09:44.492Z]
|
|
32
|
-
Fix the issue where charts are re-rendered continuously during streaming, causing:
|
|
33
|
-
1. Button click events not being captured to show popup
|
|
34
|
-
2. Users cannot interact with charts during streaming
|
|
35
|
-
|
|
36
|
-
The root cause: In BotBubble.tsx, `updateBotMessageContent` sets `innerHTML` which destroys all DOM including rendered chart placeholders. Even though `chartDisposeMap.has(chartId)` check exists, the DOM is already destroyed by innerHTML.
|
|
37
|
-
|
|
38
|
-
Solution approach:
|
|
39
|
-
1. In `updateBotMessageContent`, instead of replacing entire innerHTML, use a smarter DOM diffing approach:
|
|
40
|
-
- Parse the new HTML content
|
|
41
|
-
- Only update text nodes and elements that changed
|
|
42
|
-
- Preserve chart placeholder elements that are already rendered (have children or are in chartDisposeMap)
|
|
43
|
-
|
|
44
|
-
2. Alternative simpler approach:
|
|
45
|
-
- Before setting innerHTML, save references to rendered chart placeholder elements
|
|
46
|
-
- After setting innerHTML, find the new placeholder slots and replace them with the saved elements
|
|
47
|
-
- This preserves the rendered charts and their event handlers
|
|
48
|
-
|
|
49
|
-
3. Or use a flag to skip re-initializing charts that are already rendered - but this won't work because innerHTML destroys the DOM
|
|
50
|
-
|
|
51
|
-
Investigate the best approach and implement a fix. The goal is that during streaming:
|
|
52
|
-
- Text content updates normally
|
|
53
|
-
- Chart placeholders that are already rendered are NOT destroyed/re-created
|
|
54
|
-
- Users can interact with charts (click fullscreen button, hover, etc.)
|
|
55
|
-
|
|
56
|
-
Do not create or modify any markdown document files or code examples. After making changes, run `yarn run lint-fix && yarn run type-check` to validate.
|
|
57
|
-
|
|
58
|
-
================================================================================
|
|
59
|
-
[2025-12-02T04:14:25.602Z]
|
|
60
|
-
The previous fix didn't work. Charts are still flickering when hovering due to re-rendering when new SSE events arrive.
|
|
61
|
-
|
|
62
|
-
The issue is more fundamental - we need to understand WHY the chart components are being re-rendered during streaming.
|
|
63
|
-
|
|
64
|
-
Please investigate deeply:
|
|
65
|
-
|
|
66
|
-
1. Use web-search to find solutions for:
|
|
67
|
-
- "SolidJS prevent component re-render during streaming"
|
|
68
|
-
- "SolidJS preserve DOM elements when parent updates"
|
|
69
|
-
- "SolidJS Portal to prevent re-render"
|
|
70
|
-
- "React/SolidJS chart flickering during real-time updates"
|
|
71
|
-
|
|
72
|
-
2. Trace the full reactive chain:
|
|
73
|
-
- How does `updateLastMessage` in Bot.tsx trigger updates?
|
|
74
|
-
- How does BotBubble receive and react to message changes?
|
|
75
|
-
- Why is `updateBotMessageContent` being called repeatedly?
|
|
76
|
-
- Is there a createEffect somewhere that triggers on message change?
|
|
77
|
-
|
|
78
|
-
3. Investigate if the issue is:
|
|
79
|
-
- The entire BotBubble component re-rendering
|
|
80
|
-
- Just the `updateBotMessageContent` function being called
|
|
81
|
-
- The chart placeholder DOM being recreated
|
|
82
|
-
- SolidJS reactivity causing unnecessary updates
|
|
83
|
-
|
|
84
|
-
4. Consider alternative architectures:
|
|
85
|
-
- Using SolidJS Portal to render charts outside the message bubble
|
|
86
|
-
- Using a separate signal/store for chart state that doesn't trigger message re-render
|
|
87
|
-
- Memoizing the chart components
|
|
88
|
-
- Using `untrack` to break reactive dependencies
|
|
89
|
-
|
|
90
|
-
Find the root cause and implement a proper fix that ensures charts don't flicker during streaming.
|
|
91
|
-
|
|
92
|
-
Do not create or modify any markdown document files or code examples. After making changes, run `yarn run lint-fix && yarn run type-check` to validate.
|
|
93
|
-
|
|
94
|
-
================================================================================
|
|
95
|
-
[2025-12-02T04:28:09.707Z]
|
|
96
|
-
Now that the flickering issue is fixed with the global registry, show the fullscreen button in ChartPlaceholder even during streaming.
|
|
97
|
-
|
|
98
|
-
In `src/components/bubbles/ChartPlaceholder.tsx` line 52, change the condition from:
|
|
99
|
-
`props.config && !props.isStreaming?.()`
|
|
100
|
-
to just:
|
|
101
|
-
`props.config`
|
|
102
|
-
|
|
103
|
-
The button should now work during streaming since the chart DOM is preserved via the global registry.
|
|
104
|
-
|
|
105
|
-
Also, since `isStreaming` prop is no longer needed, you can:
|
|
106
|
-
1. Remove the `isStreaming` prop from ChartPlaceholderProps interface
|
|
107
|
-
2. Remove the `isStreaming` prop usage in BotBubble.tsx where ChartPlaceholder is rendered
|
|
108
|
-
|
|
109
|
-
Do not create or modify any markdown document files or code examples. After making changes, run `yarn run lint-fix && yarn run type-check` to validate.
|
|
110
|
-
|
|
111
|
-
================================================================================
|
|
112
|
-
[2025-12-02T04:34:32.352Z]
|
|
113
|
-
Bug: The fullscreen button in ChartPlaceholder is visible during streaming, but clicking it does nothing - the popup doesn't open.
|
|
114
|
-
|
|
115
|
-
Context:
|
|
116
|
-
- Charts are now preserved via global registry to prevent flickering during streaming
|
|
117
|
-
- The button is rendered with `onClick={openPopup}` handler
|
|
118
|
-
- The popup uses `isPopupOpen` signal and `ChartPopupModal` component
|
|
14
|
+
## Suspected Issue
|
|
15
|
+
The `StableChartWrapper` uses a polling approach with `requestAnimationFrame` to check for config changes. When the chart config becomes available (moved from `pendingCharts` to `completedCharts`), the wrapper may not be receiving the updated props correctly, or the polling mechanism fails to detect the change.
|
|
119
16
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
Investigate why the click event or popup is not working when the chart is in the global registry during streaming. Consider:
|
|
126
|
-
- Is the event handler being lost when the element is saved/restored?
|
|
127
|
-
- Is there an issue with the SolidJS reactive context when the component is rendered via `render()` function?
|
|
128
|
-
- Is the popup being rendered but hidden/blocked by something?
|
|
129
|
-
|
|
130
|
-
Do not create or modify any markdown document files or code examples. After making changes, run `yarn run lint-fix && yarn run type-check` to validate.
|
|
131
|
-
|
|
132
|
-
================================================================================
|
|
133
|
-
[2025-12-02T04:38:56.981Z]
|
|
134
|
-
The previous fix didn't work. The fullscreen button click still doesn't work during streaming.
|
|
135
|
-
|
|
136
|
-
The issue is NOT about DOM elements being destroyed - there's something more fundamental happening.
|
|
137
|
-
|
|
138
|
-
Please investigate deeper:
|
|
139
|
-
|
|
140
|
-
1. Add console.log statements to debug:
|
|
141
|
-
- In `openPopup` function in ChartPlaceholder.tsx to see if click event fires
|
|
142
|
-
- Log `isPopupOpen()` value before and after `setIsPopupOpen(true)`
|
|
143
|
-
- Log `props.config` to verify it exists
|
|
144
|
-
|
|
145
|
-
2. Check if the issue is with SolidJS Portal or ChartPopupModal:
|
|
146
|
-
- Is the popup being rendered but invisible?
|
|
147
|
-
- Is there a z-index issue?
|
|
148
|
-
- Is the Portal mounting correctly when component is rendered via `render()` function?
|
|
149
|
-
|
|
150
|
-
3. Consider if the problem is that when ChartPlaceholder is rendered via SolidJS `render()` function into a detached/reattached DOM element, the reactive context or Portal context is broken.
|
|
151
|
-
|
|
152
|
-
4. Test by replacing the popup with a simple `alert('clicked')` in openPopup to verify if the click event fires at all.
|
|
153
|
-
|
|
154
|
-
Find the actual root cause and fix it properly.
|
|
155
|
-
|
|
156
|
-
Do not create or modify any markdown document files or code examples. After making changes, run `yarn run lint-fix && yarn run type-check` to validate.
|
|
157
|
-
|
|
158
|
-
================================================================================
|
|
159
|
-
[2025-12-02T04:45:08.748Z]
|
|
160
|
-
Continue adding debug logs. You added console.log to openPopup and the button onClick. Now:
|
|
17
|
+
The flow:
|
|
18
|
+
1. ChartTagParser emits placeholder → `pendingCharts` signal updated
|
|
19
|
+
2. ChartTagParser completes chart → `completedCharts` signal updated, removed from `pendingCharts`
|
|
20
|
+
3. BotBubble passes these signals to ChartPlaceholder → StableChartWrapper
|
|
21
|
+
4. StableChartWrapper should detect config and render ChartBubble
|
|
161
22
|
|
|
162
|
-
|
|
163
|
-
|
|
23
|
+
## Definition of Done
|
|
24
|
+
1. When streaming completes, chart should automatically transition from loading state to rendered chart
|
|
25
|
+
2. No page reload required
|
|
26
|
+
3. Chart should render correctly for both live streaming and historical messages loaded from localStorage
|
|
27
|
+
4. No flickering during the transition
|
|
164
28
|
|
|
165
|
-
|
|
166
|
-
- The click event fires at all (alert should show)
|
|
167
|
-
- The openPopup function is called
|
|
168
|
-
- The isPopupOpen signal changes
|
|
169
|
-
- The config exists
|
|
29
|
+
Please investigate the reactivity flow between Bot.tsx → BotBubble.tsx → ChartPlaceholder.tsx → StableChartWrapper.tsx and fix the issue.
|
|
170
30
|
|
|
171
|
-
Do not create or modify any markdown document files or code examples.
|
|
31
|
+
Do not create or modify any markdown document files or code examples.
|
|
172
32
|
|
|
@@ -1,12 +1,29 @@
|
|
|
1
|
-
|
|
1
|
+
Fix bug: Chart displays "loading chart..." but never renders the actual chart - requires page reload to display.
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
## Problem Description
|
|
4
|
+
When streaming a message containing a chart tag (`<chart>...</chart>`), the chart placeholder shows loading state but never transitions to render the actual chart. User must reload the page for the chart to display correctly.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
6
|
+
## Key Components Involved
|
|
7
|
+
- `src/components/Bot.tsx`: Manages `pendingCharts` and `completedCharts` signals during streaming
|
|
8
|
+
- `src/components/bubbles/BotBubble.tsx`: Calls `initializeChartPlaceholders()` to render charts
|
|
9
|
+
- `src/components/bubbles/StableChartWrapper.tsx`: Uses polling mechanism with `requestAnimationFrame` to check for config
|
|
10
|
+
- `src/components/bubbles/ChartPlaceholder.tsx`: Wrapper component with loading/chart states
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
## Suspected Issue
|
|
13
|
+
The `StableChartWrapper` uses a polling approach with `requestAnimationFrame` to check for config changes. When the chart config becomes available (moved from `pendingCharts` to `completedCharts`), the wrapper may not be receiving the updated props correctly, or the polling mechanism fails to detect the change.
|
|
14
|
+
|
|
15
|
+
The flow:
|
|
16
|
+
1. ChartTagParser emits placeholder → `pendingCharts` signal updated
|
|
17
|
+
2. ChartTagParser completes chart → `completedCharts` signal updated, removed from `pendingCharts`
|
|
18
|
+
3. BotBubble passes these signals to ChartPlaceholder → StableChartWrapper
|
|
19
|
+
4. StableChartWrapper should detect config and render ChartBubble
|
|
20
|
+
|
|
21
|
+
## Definition of Done
|
|
22
|
+
1. When streaming completes, chart should automatically transition from loading state to rendered chart
|
|
23
|
+
2. No page reload required
|
|
24
|
+
3. Chart should render correctly for both live streaming and historical messages loaded from localStorage
|
|
25
|
+
4. No flickering during the transition
|
|
26
|
+
|
|
27
|
+
Please investigate the reactivity flow between Bot.tsx → BotBubble.tsx → ChartPlaceholder.tsx → StableChartWrapper.tsx and fix the issue.
|
|
28
|
+
|
|
29
|
+
Do not create or modify any markdown document files or code examples.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BotBubble.d.ts","sourceRoot":"","sources":["../../../src/components/bubbles/BotBubble.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAc,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAM1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAM9D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAGjD,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,WAAW,CAAC;IACrB,WAAW,CAAC,EAAE,GAAG,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACpD,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,mBAAmB,CAAC;IACrC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,IAAI,KAAK,IAAI,CAAC;IAC/E,0BAA0B,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uBAAuB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IACpC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,aAAa,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;IAClD,eAAe,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;CAC5C,CAAC;AAWF,eAAO,MAAM,SAAS,UAAW,KAAK,
|
|
1
|
+
{"version":3,"file":"BotBubble.d.ts","sourceRoot":"","sources":["../../../src/components/bubbles/BotBubble.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAc,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAM1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAM9D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAGjD,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,WAAW,CAAC;IACrB,WAAW,CAAC,EAAE,GAAG,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACpD,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,mBAAmB,CAAC;IACrC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,IAAI,KAAK,IAAI,CAAC;IAC/E,0BAA0B,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uBAAuB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IACpC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,aAAa,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;IAClD,eAAe,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;CAC5C,CAAC;AAWF,eAAO,MAAM,SAAS,UAAW,KAAK,mCA+vBrC,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { ChartConfig } from '@/types/chart';
|
|
2
2
|
export interface ChartPlaceholderProps {
|
|
3
3
|
chartId: string;
|
|
4
|
-
config
|
|
5
|
-
|
|
4
|
+
/** Getter function that returns the chart config. Using a getter ensures reactivity when rendered via SolidJS render(). */
|
|
5
|
+
getConfig?: () => ChartConfig | null | undefined;
|
|
6
|
+
/** Getter function that returns loading state. Using a getter ensures reactivity when rendered via SolidJS render(). */
|
|
7
|
+
getIsLoading?: () => boolean;
|
|
6
8
|
/** Getter function that returns true while streaming is in progress. Using a getter ensures reactivity when rendered via SolidJS render(). */
|
|
7
9
|
isStreaming?: () => boolean;
|
|
8
10
|
backgroundColor?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChartPlaceholder.d.ts","sourceRoot":"","sources":["../../../src/components/bubbles/ChartPlaceholder.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAKjD,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,
|
|
1
|
+
{"version":3,"file":"ChartPlaceholder.d.ts","sourceRoot":"","sources":["../../../src/components/bubbles/ChartPlaceholder.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAKjD,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,2HAA2H;IAC3H,SAAS,CAAC,EAAE,MAAM,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,wHAAwH;IACxH,YAAY,CAAC,EAAE,MAAM,OAAO,CAAC;IAC7B,8IAA8I;IAC9I,WAAW,CAAC,EAAE,MAAM,OAAO,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAID;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,UAAW,qBAAqB,mCA+E5D,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { ChartConfig } from '@/types/chart';
|
|
2
2
|
export interface StableChartWrapperProps {
|
|
3
3
|
chartId: string;
|
|
4
|
-
config
|
|
5
|
-
|
|
4
|
+
/** Getter function for reactive config updates */
|
|
5
|
+
getConfig?: () => ChartConfig | null | undefined;
|
|
6
|
+
/** Getter function for reactive loading state updates */
|
|
7
|
+
getIsLoading?: () => boolean;
|
|
6
8
|
backgroundColor?: string;
|
|
7
9
|
textColor?: string;
|
|
8
10
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StableChartWrapper.d.ts","sourceRoot":"","sources":["../../../src/components/bubbles/StableChartWrapper.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,
|
|
1
|
+
{"version":3,"file":"StableChartWrapper.d.ts","sourceRoot":"","sources":["../../../src/components/bubbles/StableChartWrapper.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,kDAAkD;IAClD,SAAS,CAAC,EAAE,MAAM,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,yDAAyD;IACzD,YAAY,CAAC,EAAE,MAAM,OAAO,CAAC;IAC7B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,UAAW,uBAAuB,mCAmGhE,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|