@mt-gloss/ui 0.1.95 → 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.
Files changed (27) hide show
  1. package/composites-panels.js +593 -189
  2. package/index.d.ts +6 -0
  3. package/index.js +1294 -1150
  4. package/lib/composites/dashboard/BellCutout/BellCutout.d.ts +11 -0
  5. package/lib/composites/dashboard/BellCutout/index.d.ts +2 -0
  6. package/lib/composites/dashboard/BellPopover/BellPopover.d.ts +12 -0
  7. package/lib/composites/dashboard/BellPopover/index.d.ts +2 -0
  8. package/lib/composites/dashboard/index.d.ts +2 -0
  9. package/lib/composites/index.d.ts +1 -0
  10. package/lib/composites/panels/coordinator/PANEL_IDS.d.ts +8 -0
  11. package/lib/composites/panels/index.d.ts +16 -0
  12. package/lib/composites/panels/shells/CatalogAddShell.d.ts +19 -0
  13. package/lib/composites/panels/shells/CatalogReplaceShell.d.ts +13 -0
  14. package/lib/composites/panels/shells/PageMgmtShell.d.ts +10 -0
  15. package/lib/composites/panels/shells/index.d.ts +15 -0
  16. package/lib/composites/panels/shells/internals/CatalogFooter.d.ts +18 -0
  17. package/lib/composites/panels/shells/internals/CatalogLensPicker.d.ts +6 -0
  18. package/lib/composites/panels/shells/internals/CatalogTileGrid.d.ts +17 -0
  19. package/lib/composites/panels/shells/internals/PageMgmtFooter.d.ts +16 -0
  20. package/lib/composites/panels/shells/internals/PageMgmtRow.d.ts +8 -0
  21. package/lib/composites/panels/shells/internals/catalog-mocks.d.ts +20 -0
  22. package/lib/composites/panels/shells/internals/page-mgmt-mocks.d.ts +12 -0
  23. package/lib/composites/portal/BodyPortal.d.ts +18 -0
  24. package/lib/composites/portal/index.d.ts +4 -0
  25. package/lib/composites/portal/usePortalAnchor.d.ts +17 -0
  26. package/package.json +1 -1
  27. 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 */