@tetrascience-npm/tetrascience-react-ui 0.6.0-beta.93.1 → 0.6.0-beta.95.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/dist/components/charts/LineGraph/LineGraph.cjs +1 -1
- package/dist/components/charts/LineGraph/LineGraph.cjs.map +1 -1
- package/dist/components/charts/LineGraph/LineGraph.js +17 -17
- package/dist/components/charts/LineGraph/LineGraph.js.map +1 -1
- package/dist/components/charts/PieChart/PieChart.cjs +1 -1
- package/dist/components/charts/PieChart/PieChart.cjs.map +1 -1
- package/dist/components/charts/PieChart/PieChart.js +55 -41
- package/dist/components/charts/PieChart/PieChart.js.map +1 -1
- package/dist/components/charts/ScatterGraph/ScatterGraph.cjs +1 -1
- package/dist/components/charts/ScatterGraph/ScatterGraph.cjs.map +1 -1
- package/dist/components/charts/ScatterGraph/ScatterGraph.js +29 -29
- package/dist/components/charts/ScatterGraph/ScatterGraph.js.map +1 -1
- package/dist/components/ui/resizable.cjs +1 -1
- package/dist/components/ui/resizable.cjs.map +1 -1
- package/dist/components/ui/resizable.js +27 -15
- package/dist/components/ui/resizable.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +18 -0
- package/dist/index.tailwind.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3184,6 +3184,24 @@ export declare interface ReferencedSourcesContext {
|
|
|
3184
3184
|
clear: () => void;
|
|
3185
3185
|
}
|
|
3186
3186
|
|
|
3187
|
+
/**
|
|
3188
|
+
* Resize handle between two panels.
|
|
3189
|
+
*
|
|
3190
|
+
* The handle's layout footprint is a **1px divider that sits exactly on the
|
|
3191
|
+
* panel boundary**, so the divider, the grip, and the seam between the panels
|
|
3192
|
+
* all line up — regardless of the panels' backgrounds. A wide, transparent
|
|
3193
|
+
* **grab area** is layered on top via `::after` (it overlaps both panels by 6px
|
|
3194
|
+
* without taking layout space) so the handle can be grabbed anywhere in the gap,
|
|
3195
|
+
* not just on the hairline.
|
|
3196
|
+
*
|
|
3197
|
+
* The 1px divider — and the optional grip (`withHandle`) — stay hidden at rest
|
|
3198
|
+
* and **reveal on hover, keyboard focus, or while dragging** (the handle tracks
|
|
3199
|
+
* the pointer, so it stays hovered). Keyboard focus reveals them in the `ring`
|
|
3200
|
+
* color for a clear focus indicator. Works in both orientations.
|
|
3201
|
+
*
|
|
3202
|
+
* Has a default `aria-label` so the separator always has an accessible name;
|
|
3203
|
+
* pass `aria-label` to override it with something context-specific.
|
|
3204
|
+
*/
|
|
3187
3205
|
export declare function ResizableHandle({ withHandle, className, ...props }: ResizablePrimitive.SeparatorProps & {
|
|
3188
3206
|
withHandle?: boolean;
|
|
3189
3207
|
}): JSX.Element;
|