@rfkit/charts 1.4.0 → 1.4.1
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/README.md +156 -273
- package/components/AxisY/heatmap/index.d.ts +1 -1
- package/components/AxisY/heatmap/variants/standard/index.d.ts +6 -0
- package/components/Container/runtime.d.ts +10 -0
- package/components/Cursor/popover-support.d.ts +8 -0
- package/components/Toolbar/registry.d.ts +12 -0
- package/components/Toolbar/toggles/index.d.ts +10 -0
- package/components/Zoom/ZoomViewportLayer.d.ts +7 -0
- package/components/ui/button.d.ts +2 -2
- package/config/constants.d.ts +2 -2
- package/hooks/index.d.ts +1 -2
- package/hooks/module-subscription-core.d.ts +23 -0
- package/hooks/publish/enhancedPublish.d.ts +1 -1
- package/hooks/publish/index.d.ts +0 -1
- package/hooks/publish/publish-event.d.ts +9 -0
- package/hooks/useLevelStreamAnalyzer.d.ts +1 -1
- package/hooks/useModuleSubscription.d.ts +21 -23
- package/index.d.ts +5 -5
- package/index.js +7378 -6950
- package/modules/Gauge/render.d.ts +0 -2
- package/{components/HeatmapCapture → modules/Heatmap/Capture}/tools.d.ts +1 -1
- package/modules/Heatmap/CursorPopover.d.ts +6 -0
- package/modules/Heatmap/render.d.ts +2 -0
- package/modules/Level/CursorPopover.d.ts +6 -0
- package/modules/Occupancy/CursorPopover.d.ts +3 -0
- package/modules/Occupancy/TotalLine/index.d.ts +1 -1
- package/modules/Occupancy/total-line-runtime.d.ts +4 -0
- package/modules/Spectrum/AxisYCanvas/index.d.ts +6 -0
- package/{components/AxisYByCanvas → modules/Spectrum/AxisYCanvas}/useCanvasAxisY.d.ts +1 -1
- package/modules/Spectrum/BandLayer/index.d.ts +5 -0
- package/modules/Spectrum/BandLayer/useBandLayerController.d.ts +2 -0
- package/{components → modules/Spectrum}/Blaze/tools.d.ts +1 -1
- package/modules/Spectrum/CursorPopover.d.ts +6 -0
- package/{components → modules/Spectrum}/FrequencyAllocation/color.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/model/resolveFrequencyAllocationData.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/model/resolver.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/model/useAllocationAtCursor.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/model/useFrequencyAllocationData.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/presenters/AllocationInfo/index.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/presenters/AllocationSegments/index.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/tools.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyAllocation/types.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyDataBoard/panels/StationInfoPanel/index.d.ts +1 -1
- package/{components → modules/Spectrum}/FrequencyTagLine/index.d.ts +1 -1
- package/{components → modules/Spectrum}/Markers/MarkerItem/index.d.ts +1 -1
- package/{components → modules/Spectrum}/Markers/hooks/useMarkerEvents.d.ts +1 -1
- package/{components → modules/Spectrum}/Markers/hooks/useMarkers.d.ts +2 -2
- package/{components → modules/Spectrum}/Markers/tools.d.ts +1 -1
- package/{components → modules/Spectrum}/Scope/useScope.d.ts +1 -1
- package/{components → modules/Spectrum}/Signal/model/resolver.d.ts +1 -1
- package/{components → modules/Spectrum}/Signal/model/useStationInfoAtCursor.d.ts +1 -1
- package/{components → modules/Spectrum}/Signal/tools.d.ts +1 -1
- package/{components → modules/Spectrum}/Signal/useSignalDataManager.d.ts +1 -1
- package/{components → modules/Spectrum}/Signal/utils.d.ts +3 -3
- package/modules/Spectrum/render.d.ts +31 -52
- package/{hooks → modules/Spectrum}/useSpectrumAnalyzer/index.d.ts +1 -1
- package/modules/base/BaseRenderer.d.ts +63 -0
- package/modules/base/CircularRenderer.d.ts +4 -5
- package/package.json +21 -4
- package/{modules/tools.d.ts → runtime/passThrough.d.ts} +1 -1
- package/store/chart-store.d.ts +11 -0
- package/store/context.d.ts +5 -2
- package/store/hooks/index.d.ts +1 -1
- package/store/hooks/useStore.d.ts +11 -1
- package/store/index.d.ts +1 -1
- package/store/reducer.d.ts +1 -33
- package/store/runtime.d.ts +16 -0
- package/tailwind-bridge.css +28 -101
- package/theme/init-charts-theme.d.ts +7 -11
- package/theme/style-scope.d.ts +0 -1
- package/{utils/theme.d.ts → theme/theme-color.d.ts} +0 -11
- package/theme/theme-contract.d.ts +28 -0
- package/theme/theme-runtime.d.ts +14 -0
- package/theme/theme-styles.d.ts +10 -0
- package/theme/theme-tokens.d.ts +85 -0
- package/types/common.d.ts +1 -1
- package/types/store/index.d.ts +6 -4
- package/types/store/ui.d.ts +4 -4
- package/utils/index.d.ts +0 -1
- package/utils/subscription.d.ts +18 -3
- package/components/AxisY/heatmap/type/Default/index.d.ts +0 -6
- package/components/AxisYByCanvas/index.d.ts +0 -6
- package/components/Band/index.d.ts +0 -5
- package/components/Band/useBand.d.ts +0 -2
- package/components/Cursor/popovers/index.d.ts +0 -10
- package/components/SignalAnalysis/Switch/index.d.ts +0 -3
- package/components/ToolsBar/registry.d.ts +0 -12
- package/components/ToolsBar/toggles/index.d.ts +0 -10
- package/components/Zoom/ZoomOffsetContainer/index.d.ts +0 -7
- package/lib/LevelStream/useAxisY.d.ts +0 -1
- package/theme/charts-theme-controller.d.ts +0 -27
- package/theme/charts-theme-environment.d.ts +0 -7
- package/theme/shadcn-theme-config.d.ts +0 -221
- /package/{lib → charts}/Dial/Chart.d.ts +0 -0
- /package/{lib → charts}/Dial/index.d.ts +0 -0
- /package/{lib → charts}/Gauge/Chart.d.ts +0 -0
- /package/{lib → charts}/Gauge/index.d.ts +0 -0
- /package/{lib → charts}/Heatmap/Chart.d.ts +0 -0
- /package/{lib → charts}/Heatmap/index.d.ts +0 -0
- /package/{lib → charts}/IQ/Chart.d.ts +0 -0
- /package/{lib → charts}/IQ/index.d.ts +0 -0
- /package/{lib → charts}/LevelStream/Chart.d.ts +0 -0
- /package/{lib → charts}/LevelStream/index.d.ts +0 -0
- /package/{lib → charts}/Occupancy/Chart.d.ts +0 -0
- /package/{lib → charts}/Occupancy/index.d.ts +0 -0
- /package/{lib → charts}/SpatialSpectrum/Chart.d.ts +0 -0
- /package/{lib → charts}/SpatialSpectrum/index.d.ts +0 -0
- /package/{lib → charts}/Spectrum/Chart.d.ts +0 -0
- /package/{lib → charts}/Spectrum/index.d.ts +0 -0
- /package/{lib → charts}/index.d.ts +0 -0
- /package/components/AxisY/heatmap/{type/Default → variants/standard}/GradientRibbon/index.d.ts +0 -0
- /package/components/AxisY/occupancy/{type/Default → variants/standard}/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/controls/Reset.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/controls/SegmentsDisplayControl/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/controls/SeriesControl/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/controls/SeriesDisplayControl/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/controls/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/decorations/GradientRibbon/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/decorations/SpacerLine.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/decorations/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/IconBox.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/ToolbarContentBox.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/ToolbarDropdown.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/ToolbarGlyph.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/ToolbarGroup.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/ToolbarGroupIconBox.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/ToolbarSurface.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/index.d.ts +0 -0
- /package/components/{ToolsBar → Toolbar}/primitives/styles.d.ts +0 -0
- /package/{components/GaugeBox/index.d.ts → modules/Gauge/InteractionSurface.d.ts} +0 -0
- /package/{components/HeatmapCapture → modules/Heatmap/Capture}/Area/index.d.ts +0 -0
- /package/{components/HeatmapCapture → modules/Heatmap/Capture}/RowIndex/index.d.ts +0 -0
- /package/{components/HeatmapCapture → modules/Heatmap/Capture}/Slider/index.d.ts +0 -0
- /package/{components/FrequencyTagLine → modules/Heatmap/Capture}/Switch/index.d.ts +0 -0
- /package/{components/HeatmapCapture → modules/Heatmap/Capture}/index.d.ts +0 -0
- /package/{components/HeatmapCapture → modules/Heatmap/TimeRange}/Switch/index.d.ts +0 -0
- /package/{components → modules/Heatmap}/TimeRange/useTimeRange.d.ts +0 -0
- /package/{components → modules/Spectrum}/Blaze/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/DeltaMeasurement/Switch.d.ts +0 -0
- /package/{components → modules/Spectrum}/DeltaMeasurement/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/DragFrame/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyAllocation/Switch/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyAllocation/data.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyAllocation/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyAllocation/model/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyAllocation/overlays/Tooltip/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyAllocation/overlays/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyAllocation/presenters/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyDataBoard/hooks/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyDataBoard/hooks/useStationInfoAtCursor.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyDataBoard/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyDataBoard/panels/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/FrequencyTagLine/Board/index.d.ts +0 -0
- /package/{components/Limit → modules/Spectrum/FrequencyTagLine}/Switch/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Legend/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Limit/Item.d.ts +0 -0
- /package/{components/TimeRange → modules/Spectrum/Limit}/Switch/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Limit/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Markers/Switch/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Markers/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Scope/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/SegmentsZebra/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/Switch/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/metadata/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/metadata/signalType.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/model/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/model/useUnifiedSignals.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/presenters/SignalSegments/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Signal/presenters/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Stripe/Switch/index.d.ts +0 -0
- /package/{components → modules/Spectrum}/Stripe/index.d.ts +0 -0
- /package/{hooks/publish → modules/Spectrum}/useMarkerPublish.d.ts +0 -0
- /package/{hooks → modules/Spectrum}/useSpectrumAnalyzer/useTemplateComparison.d.ts +0 -0
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
export declare const RFKIT_CHARTS_SHADCN_THEME_CONFIGS: [{
|
|
2
|
-
readonly name: "--background";
|
|
3
|
-
readonly dark: "#202020";
|
|
4
|
-
readonly light: "#FFFFFF";
|
|
5
|
-
}, {
|
|
6
|
-
readonly name: "--foreground";
|
|
7
|
-
readonly dark: "#FFFFFF";
|
|
8
|
-
readonly light: "#1D2129";
|
|
9
|
-
}, {
|
|
10
|
-
readonly name: "--card";
|
|
11
|
-
readonly dark: "var(--background)";
|
|
12
|
-
readonly light: "var(--background)";
|
|
13
|
-
}, {
|
|
14
|
-
readonly name: "--card-foreground";
|
|
15
|
-
readonly dark: "var(--foreground)";
|
|
16
|
-
readonly light: "var(--foreground)";
|
|
17
|
-
}, {
|
|
18
|
-
readonly name: "--popover";
|
|
19
|
-
readonly dark: "var(--background)";
|
|
20
|
-
readonly light: "var(--background)";
|
|
21
|
-
}, {
|
|
22
|
-
readonly name: "--popover-foreground";
|
|
23
|
-
readonly dark: "var(--foreground)";
|
|
24
|
-
readonly light: "var(--foreground)";
|
|
25
|
-
}, {
|
|
26
|
-
readonly name: "--primary";
|
|
27
|
-
readonly dark: "#4371F8";
|
|
28
|
-
readonly light: "#2A51F7";
|
|
29
|
-
}, {
|
|
30
|
-
readonly name: "--primary-foreground";
|
|
31
|
-
readonly dark: "#FFFFFF";
|
|
32
|
-
readonly light: "#FFFFFF";
|
|
33
|
-
}, {
|
|
34
|
-
readonly name: "--secondary";
|
|
35
|
-
readonly dark: "#29292B";
|
|
36
|
-
readonly light: "#F0F1F3";
|
|
37
|
-
}, {
|
|
38
|
-
readonly name: "--secondary-foreground";
|
|
39
|
-
readonly dark: "var(--foreground)";
|
|
40
|
-
readonly light: "var(--foreground)";
|
|
41
|
-
}, {
|
|
42
|
-
readonly name: "--muted";
|
|
43
|
-
readonly dark: "#2F2F2F";
|
|
44
|
-
readonly light: "#E1E2E8";
|
|
45
|
-
}, {
|
|
46
|
-
readonly name: "--muted-foreground";
|
|
47
|
-
readonly dark: "rgba(255, 255, 255, 0.7)";
|
|
48
|
-
readonly light: "rgba(29, 33, 41, 0.7)";
|
|
49
|
-
}, {
|
|
50
|
-
readonly name: "--accent";
|
|
51
|
-
readonly dark: "var(--secondary)";
|
|
52
|
-
readonly light: "var(--secondary)";
|
|
53
|
-
}, {
|
|
54
|
-
readonly name: "--accent-foreground";
|
|
55
|
-
readonly dark: "var(--foreground)";
|
|
56
|
-
readonly light: "var(--foreground)";
|
|
57
|
-
}, {
|
|
58
|
-
readonly name: "--warning";
|
|
59
|
-
readonly dark: "#FF9626";
|
|
60
|
-
readonly light: "#FF7D00";
|
|
61
|
-
}, {
|
|
62
|
-
readonly name: "--warning-foreground";
|
|
63
|
-
readonly dark: "#FFFFFF";
|
|
64
|
-
readonly light: "#FFFFFF";
|
|
65
|
-
}, {
|
|
66
|
-
readonly name: "--success";
|
|
67
|
-
readonly dark: "#23C343";
|
|
68
|
-
readonly light: "#00B42A";
|
|
69
|
-
}, {
|
|
70
|
-
readonly name: "--success-foreground";
|
|
71
|
-
readonly dark: "#FFFFFF";
|
|
72
|
-
readonly light: "#FFFFFF";
|
|
73
|
-
}, {
|
|
74
|
-
readonly name: "--destructive";
|
|
75
|
-
readonly dark: "#F76965";
|
|
76
|
-
readonly light: "#F53F3F";
|
|
77
|
-
}, {
|
|
78
|
-
readonly name: "--destructive-foreground";
|
|
79
|
-
readonly dark: "#FFFFFF";
|
|
80
|
-
readonly light: "#FFFFFF";
|
|
81
|
-
}, {
|
|
82
|
-
readonly name: "--border";
|
|
83
|
-
readonly dark: "#313131";
|
|
84
|
-
readonly light: "#F0F0F0";
|
|
85
|
-
}, {
|
|
86
|
-
readonly name: "--input";
|
|
87
|
-
readonly dark: "var(--border)";
|
|
88
|
-
readonly light: "var(--border)";
|
|
89
|
-
}, {
|
|
90
|
-
readonly name: "--ring";
|
|
91
|
-
readonly dark: "var(--primary)";
|
|
92
|
-
readonly light: "var(--primary)";
|
|
93
|
-
}, {
|
|
94
|
-
readonly name: "--chart-panel";
|
|
95
|
-
readonly dark: "rgba(32, 32, 32, 0.96)";
|
|
96
|
-
readonly light: "rgba(255, 255, 255, 0.96)";
|
|
97
|
-
}, {
|
|
98
|
-
readonly name: "--chart-panel-foreground";
|
|
99
|
-
readonly dark: "var(--foreground)";
|
|
100
|
-
readonly light: "var(--foreground)";
|
|
101
|
-
}, {
|
|
102
|
-
readonly name: "--chart-grid";
|
|
103
|
-
readonly dark: "rgba(255, 255, 255, 0.12)";
|
|
104
|
-
readonly light: "rgba(29, 33, 41, 0.12)";
|
|
105
|
-
}, {
|
|
106
|
-
readonly name: "--chart-grid-strong";
|
|
107
|
-
readonly dark: "rgba(255, 255, 255, 0.28)";
|
|
108
|
-
readonly light: "rgba(29, 33, 41, 0.28)";
|
|
109
|
-
}, {
|
|
110
|
-
readonly name: "--chart-highlight";
|
|
111
|
-
readonly dark: "var(--primary)";
|
|
112
|
-
readonly light: "var(--primary)";
|
|
113
|
-
}, {
|
|
114
|
-
readonly name: "--chart-warning";
|
|
115
|
-
readonly dark: "var(--warning)";
|
|
116
|
-
readonly light: "var(--warning)";
|
|
117
|
-
}, {
|
|
118
|
-
readonly name: "--chart-danger";
|
|
119
|
-
readonly dark: "var(--destructive)";
|
|
120
|
-
readonly light: "var(--destructive)";
|
|
121
|
-
}, {
|
|
122
|
-
readonly name: "--chart-surface";
|
|
123
|
-
readonly dark: "var(--secondary)";
|
|
124
|
-
readonly light: "var(--secondary)";
|
|
125
|
-
}, {
|
|
126
|
-
readonly name: "--chart-1";
|
|
127
|
-
readonly dark: "var(--primary)";
|
|
128
|
-
readonly light: "var(--primary)";
|
|
129
|
-
}, {
|
|
130
|
-
readonly name: "--chart-2";
|
|
131
|
-
readonly dark: "var(--warning)";
|
|
132
|
-
readonly light: "var(--warning)";
|
|
133
|
-
}, {
|
|
134
|
-
readonly name: "--chart-3";
|
|
135
|
-
readonly dark: "#4D7CF8";
|
|
136
|
-
readonly light: "#4D7CF8";
|
|
137
|
-
}, {
|
|
138
|
-
readonly name: "--chart-4";
|
|
139
|
-
readonly dark: "#5AB9C1";
|
|
140
|
-
readonly light: "#5AB9C1";
|
|
141
|
-
}, {
|
|
142
|
-
readonly name: "--chart-5";
|
|
143
|
-
readonly dark: "#682E8F";
|
|
144
|
-
readonly light: "#682E8F";
|
|
145
|
-
}, {
|
|
146
|
-
readonly name: "--radius";
|
|
147
|
-
readonly dark: "var(--size-border-radius-base)";
|
|
148
|
-
readonly light: "var(--size-border-radius-base)";
|
|
149
|
-
}, {
|
|
150
|
-
readonly name: "--sidebar";
|
|
151
|
-
readonly dark: "var(--background)";
|
|
152
|
-
readonly light: "var(--background)";
|
|
153
|
-
}, {
|
|
154
|
-
readonly name: "--sidebar-foreground";
|
|
155
|
-
readonly dark: "var(--foreground)";
|
|
156
|
-
readonly light: "var(--foreground)";
|
|
157
|
-
}, {
|
|
158
|
-
readonly name: "--sidebar-primary";
|
|
159
|
-
readonly dark: "var(--primary)";
|
|
160
|
-
readonly light: "var(--primary)";
|
|
161
|
-
}, {
|
|
162
|
-
readonly name: "--sidebar-primary-foreground";
|
|
163
|
-
readonly dark: "var(--primary-foreground)";
|
|
164
|
-
readonly light: "var(--primary-foreground)";
|
|
165
|
-
}, {
|
|
166
|
-
readonly name: "--sidebar-accent";
|
|
167
|
-
readonly dark: "var(--secondary)";
|
|
168
|
-
readonly light: "var(--secondary)";
|
|
169
|
-
}, {
|
|
170
|
-
readonly name: "--sidebar-accent-foreground";
|
|
171
|
-
readonly dark: "var(--foreground)";
|
|
172
|
-
readonly light: "var(--foreground)";
|
|
173
|
-
}, {
|
|
174
|
-
readonly name: "--sidebar-border";
|
|
175
|
-
readonly dark: "var(--border)";
|
|
176
|
-
readonly light: "var(--border)";
|
|
177
|
-
}, {
|
|
178
|
-
readonly name: "--sidebar-ring";
|
|
179
|
-
readonly dark: "var(--ring)";
|
|
180
|
-
readonly light: "var(--ring)";
|
|
181
|
-
}, {
|
|
182
|
-
readonly name: "--theme-color-primary";
|
|
183
|
-
readonly dark: "var(--primary)";
|
|
184
|
-
readonly light: "var(--primary)";
|
|
185
|
-
}, {
|
|
186
|
-
readonly name: "--theme-color-warn";
|
|
187
|
-
readonly dark: "var(--warning)";
|
|
188
|
-
readonly light: "var(--warning)";
|
|
189
|
-
}, {
|
|
190
|
-
readonly name: "--theme-color-error";
|
|
191
|
-
readonly dark: "var(--destructive)";
|
|
192
|
-
readonly light: "var(--destructive)";
|
|
193
|
-
}, {
|
|
194
|
-
readonly name: "--theme-color-success";
|
|
195
|
-
readonly dark: "var(--success)";
|
|
196
|
-
readonly light: "var(--success)";
|
|
197
|
-
}, {
|
|
198
|
-
readonly name: "--theme-bg-base";
|
|
199
|
-
readonly dark: "var(--background)";
|
|
200
|
-
readonly light: "var(--background)";
|
|
201
|
-
}, {
|
|
202
|
-
readonly name: "--theme-bg-second";
|
|
203
|
-
readonly dark: "var(--secondary)";
|
|
204
|
-
readonly light: "var(--secondary)";
|
|
205
|
-
}, {
|
|
206
|
-
readonly name: "--theme-bg-third";
|
|
207
|
-
readonly dark: "var(--muted)";
|
|
208
|
-
readonly light: "var(--muted)";
|
|
209
|
-
}, {
|
|
210
|
-
readonly name: "--theme-color-base";
|
|
211
|
-
readonly dark: "var(--foreground)";
|
|
212
|
-
readonly light: "var(--foreground)";
|
|
213
|
-
}, {
|
|
214
|
-
readonly name: "--theme-border-base";
|
|
215
|
-
readonly dark: "var(--border)";
|
|
216
|
-
readonly light: "var(--border)";
|
|
217
|
-
}, {
|
|
218
|
-
readonly name: "--theme-box-shadow-base";
|
|
219
|
-
readonly dark: "0 1px 2px 0 rgba(255, 255, 255, 0.03),0 1px 6px -1px rgba(255, 255, 255, 0.02),0 2px 4px 0 rgba(255, 255, 255, 0.02)";
|
|
220
|
-
readonly light: "0 1px 2px 0 rgba(0, 0, 0, 0.03),0 1px 6px -1px rgba(0, 0, 0, 0.02),0 2px 4px 0 rgba(0, 0, 0, 0.02)";
|
|
221
|
-
}];
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/components/AxisY/heatmap/{type/Default → variants/standard}/GradientRibbon/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → modules/Spectrum}/FrequencyDataBoard/hooks/useStationInfoAtCursor.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|