@nulogy/components 8.14.0 → 8.14.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/main.js CHANGED
@@ -50063,7 +50063,7 @@
50063
50063
  return StatusIndicatorColours(theme)[type];
50064
50064
  };
50065
50065
 
50066
- var StatusIndicator = styled__default["default"].p.withConfig({
50066
+ var StatusIndicator = styled__default["default"].span.withConfig({
50067
50067
  displayName: "StatusIndicator",
50068
50068
  componentId: "sc-17eyafq-0"
50069
50069
  })(space, typography, flexbox, function (_ref2) {
@@ -50040,7 +50040,7 @@ var getStatusIndicatorColours = function getStatusIndicatorColours(type, theme)
50040
50040
  return StatusIndicatorColours(theme)[type];
50041
50041
  };
50042
50042
 
50043
- var StatusIndicator = styled.p.withConfig({
50043
+ var StatusIndicator = styled.span.withConfig({
50044
50044
  displayName: "StatusIndicator",
50045
50045
  componentId: "sc-17eyafq-0"
50046
50046
  })(space, typography, flexbox, function (_ref2) {
@@ -1,5 +1,6 @@
1
1
  import React from "react";
2
- type SummaryProps = {
2
+ import { BoxProps } from "../Box/Box";
3
+ type SummaryProps = Omit<BoxProps, "as"> & {
3
4
  breakpoint?: number | string;
4
5
  };
5
6
  declare const Summary: React.FC<SummaryProps>;
@@ -1,5 +1,6 @@
1
1
  import React from "react";
2
- type SummaryItemProps = {
2
+ import { FlexProps } from "../Flex/Flex";
3
+ type SummaryItemProps = Omit<FlexProps, "as"> & {
3
4
  value: number | string;
4
5
  status: React.ReactNode;
5
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nulogy/components",
3
- "version": "8.14.0",
3
+ "version": "8.14.1",
4
4
  "description": "Component library for the Nulogy Design System - http://nulogy.design",
5
5
  "private": false,
6
6
  "publishConfig": {