@mt-gloss/ui 0.0.42 → 0.0.43
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/index.d.ts +2 -0
- package/index.js +1414 -1073
- package/lib/primitives/dashboard/DevTuningPanel/DevTuningPanel.d.ts +13 -0
- package/lib/primitives/dashboard/DevTuningPanel/index.d.ts +11 -0
- package/lib/primitives/dashboard/DevTuningPanel/useResizeTuning.d.ts +47 -0
- package/lib/primitives/dashboard/MetricCard/EdgeHoverHandle.d.ts +12 -5
- package/lib/primitives/dashboard/MetricCard/GhostPreview.d.ts +8 -5
- package/lib/primitives/dashboard/MetricCard/index.d.ts +4 -0
- package/lib/primitives/dashboard/MetricCard/resizePhysics.d.ts +19 -0
- package/lib/primitives/dashboard/MetricCard/useEdgeHoverResize.d.ts +37 -20
- package/lib/primitives/dashboard/MetricCard/velocityBuffer.d.ts +39 -0
- package/lib/primitives/dashboard/index.d.ts +1 -0
- package/package.json +1 -1
- package/ui.css +1 -1
package/index.d.ts
CHANGED
|
@@ -279,6 +279,8 @@ export { FormField } from './lib/primitives/FormField';
|
|
|
279
279
|
*/
|
|
280
280
|
export type { FormFieldProps } from './lib/primitives/FormField';
|
|
281
281
|
export * from './lib/primitives/dashboard';
|
|
282
|
+
export { DevTuningPanel, useResizeTuning, TUNING_STORAGE_KEY, TUNING_DEFAULTS } from './lib/primitives/dashboard/DevTuningPanel';
|
|
283
|
+
export type { DevTuningPanelProps, UseResizeTuningReturn, TuningConfig } from './lib/primitives/dashboard/DevTuningPanel';
|
|
282
284
|
export { ActionStrip } from './lib/primitives/overlays/ActionStrip';
|
|
283
285
|
export type { PrimaryAction, OverflowAction, ActionStripProps, ActionStripContext, ActionStripMenuDirection, } from './lib/primitives/overlays/ActionStrip';
|
|
284
286
|
export { DEFAULT_OVERFLOW_IDS, DEFAULT_FOOTER_IDS, buildDefaultOverflow, } from './lib/primitives/overlays/ActionStrip';
|