@mt-gloss/ui 0.1.96 → 0.1.97
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 +6 -0
- package/index.js +1294 -1150
- package/lib/composites/dashboard/BellCutout/BellCutout.d.ts +11 -0
- package/lib/composites/dashboard/BellCutout/index.d.ts +2 -0
- package/lib/composites/dashboard/BellPopover/BellPopover.d.ts +12 -0
- package/lib/composites/dashboard/BellPopover/index.d.ts +2 -0
- package/lib/composites/dashboard/index.d.ts +2 -0
- package/lib/composites/index.d.ts +1 -0
- package/lib/composites/portal/BodyPortal.d.ts +18 -0
- package/lib/composites/portal/index.d.ts +4 -0
- package/lib/composites/portal/usePortalAnchor.d.ts +17 -0
- package/package.json +1 -1
- package/ui.css +1 -1
package/index.d.ts
CHANGED
|
@@ -333,6 +333,12 @@ export { QuickConfigPanel } from './lib/composites/dashboard/QuickConfigPanel';
|
|
|
333
333
|
export type { QuickConfigSection, QuickConfigPanelProps } from './lib/composites/dashboard/QuickConfigPanel';
|
|
334
334
|
export { BottomToolbar, SectionDots } from './lib/composites/dashboard/BottomToolbar';
|
|
335
335
|
export type { BottomToolbarProps, SectionDotsProps } from './lib/composites/dashboard/BottomToolbar';
|
|
336
|
+
export { BodyPortal, usePortalAnchor } from './lib/composites/portal';
|
|
337
|
+
export type { BodyPortalProps, PortalPlacement, UsePortalAnchorArgs } from './lib/composites/portal';
|
|
338
|
+
export { BellPopover } from './lib/composites/dashboard/BellPopover';
|
|
339
|
+
export type { BellPopoverProps } from './lib/composites/dashboard/BellPopover';
|
|
340
|
+
export { BellCutout } from './lib/composites/dashboard/BellCutout';
|
|
341
|
+
export type { BellCutoutProps, BellCutoutMode } from './lib/composites/dashboard/BellCutout';
|
|
336
342
|
export { PinToMetric } from './lib/composites/data/PinToMetric';
|
|
337
343
|
export type { PinToMetricProps, AggregationType } from './lib/composites/data/PinToMetric';
|
|
338
344
|
/** @deprecated Use `import * as UI from '@mt-gloss/ui/catalog'` instead */
|