@overdoser/react-toolkit 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +15 -0
- package/components/Button/Button.d.ts +13 -0
- package/components/Chart/AreaChart.d.ts +85 -0
- package/components/Chart/Axis.d.ts +30 -0
- package/components/Chart/BarChart.d.ts +111 -0
- package/components/Chart/ChartContainer.d.ts +33 -0
- package/components/Chart/ChartLegend.d.ts +9 -0
- package/components/Chart/ChartTooltip.d.ts +32 -0
- package/components/Chart/LineChart.d.ts +112 -0
- package/components/Chart/PieChart.d.ts +100 -0
- package/components/Chart/RadarChart.d.ts +86 -0
- package/components/Chart/Sparkline.d.ts +31 -0
- package/components/Chart/TradingChart.d.ts +89 -0
- package/components/Chart/index.d.ts +18 -0
- package/components/Chart/scales.d.ts +21 -0
- package/components/Chart/trading/indicators.d.ts +28 -0
- package/components/Chart/trading/period.d.ts +19 -0
- package/components/Chart/trading/types.d.ts +122 -0
- package/components/Chart/types.d.ts +60 -0
- package/components/Chart/useChartDimensions.d.ts +12 -0
- package/index.css +1 -1
- package/index.d.ts +2 -0
- package/index.js +3369 -1077
- package/llms.txt +361 -0
- package/manifest.json +305 -2
- package/package.json +1 -1
- package/recipes/dashboard-charts.tsx +123 -0
- package/recipes/interactive-area-chart.tsx +226 -0
- package/recipes/interactive-bar-chart.tsx +211 -0
- package/recipes/interactive-line-chart.tsx +221 -0
- package/recipes/interactive-pie-chart.tsx +191 -0
- package/recipes/trading-chart.tsx +188 -0
- package/components/Button/Button.stories.d.ts +0 -17
- package/components/Dropdown/Dropdown.stories.d.ts +0 -8
- package/components/Form/Form.stories.d.ts +0 -11
- package/components/Link/Link.stories.d.ts +0 -9
- package/components/List/List.stories.d.ts +0 -9
- package/components/Modal/Modal.stories.d.ts +0 -9
- package/components/Popover/Popover.stories.d.ts +0 -9
- package/components/Table/Table.stories.d.ts +0 -20
- package/components/Typography/Typography.stories.d.ts +0 -15
- package/components/inputs/Checkbox/Checkbox.stories.d.ts +0 -9
- package/components/inputs/Input/Input.stories.d.ts +0 -13
- package/components/inputs/Radio/Radio.stories.d.ts +0 -7
- package/components/inputs/Select/Select.stories.d.ts +0 -18
- package/components/inputs/Textarea/Textarea.stories.d.ts +0 -10
- package/test-setup.d.ts +0 -0
package/index.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export { Radio, RadioGroup } from './components/inputs/Radio';
|
|
|
41
41
|
export type { RadioProps, RadioClasses, RadioGroupProps } from './components/inputs/Radio';
|
|
42
42
|
export { Textarea } from './components/inputs/Textarea';
|
|
43
43
|
export type { TextareaProps } from './components/inputs/Textarea';
|
|
44
|
+
export { LineChart, AreaChart, BarChart, PieChart, RadarChart, TradingChart, Sparkline, sma, ema, bollinger, rsi, volumeSeries, periodToSeconds, suggestResolutionForPeriod, suggestPeriodForResolution, formatCrosshairTime, } from './components/Chart';
|
|
45
|
+
export type { LineChartProps, LineLabelArgs, LineDotArgs, LinePointClickArgs, AreaChartProps, BarChartProps, BarClickArgs, BarLabelArgs, PieChartProps, PieLabelArgs, PieSliceClickArgs, RadarChartProps, RadarAxisLabelArgs, TradingChartProps, Bar, Resolution, Period, Timezone, Datafeed, GetBarsArgs, SubscribeBarsArgs, SubscriptionHandle, SeriesType, IndicatorConfig, CrosshairInfo, VisibleRange, SparklineProps, ChartConfig, SeriesConfig, ChartClasses, ChartMargin, } from './components/Chart';
|
|
44
46
|
export { useClickOutside } from './hooks/useClickOutside';
|
|
45
47
|
export { useFocusTrap } from './hooks/useFocusTrap';
|
|
46
48
|
export { useKeyboard } from './hooks/useKeyboard';
|