sag_components 2.0.0-beta327 → 2.0.0-beta329

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.
@@ -12,6 +12,7 @@ declare namespace FilterPanel {
12
12
  placeHolder: PropTypes.Requireable<string>;
13
13
  xIconShow: PropTypes.Requireable<boolean>;
14
14
  label: PropTypes.Requireable<string>;
15
+ showSelectAll: PropTypes.Requireable<boolean>;
15
16
  labelEmptyValue: PropTypes.Requireable<string>;
16
17
  name: PropTypes.Requireable<string>;
17
18
  periodPickerSelectedValue: PropTypes.Requireable<string>;
@@ -0,0 +1,2 @@
1
+ export default FooterBranding;
2
+ declare function FooterBranding(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export const BrandingText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
2
+ export const BrandingLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, never>> & string;
@@ -1,9 +1,10 @@
1
1
  export default TableFooter;
2
- declare function TableFooter({ visibleFirst, visibleLast, total, rowLabel, isLoading, isLoadingText }: {
2
+ declare function TableFooter({ visibleFirst, visibleLast, total, rowLabel, isLoading, isLoadingText, footerRight }: {
3
3
  visibleFirst: any;
4
4
  visibleLast: any;
5
5
  total: any;
6
6
  rowLabel: any;
7
7
  isLoading: any;
8
8
  isLoadingText: any;
9
+ footerRight: any;
9
10
  }): import("react/jsx-runtime").JSX.Element;
@@ -3,5 +3,6 @@ export const FooterLabel: import("styled-components/dist/types").IStyledComponen
3
3
  export const FooterLabelBold: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
4
4
  export const FooterLoadingGroup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
5
5
  export const FooterLottieWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
6
+ export const FooterRightGroup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
6
7
  export const FooterProgressTrack: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
7
8
  export const FooterProgressFill: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -81,3 +81,4 @@ export { default as TotalBenchmarkArrows } from "./components/TotalBenchmarkArro
81
81
  export { default as TotalBenchmarkBarchart } from "./components/TotalBenchmarkBarchart/TotalBenchmarkBarchart.jsx";
82
82
  export { default as TotalBenchmarkAreachart } from "./components/TotalBenchmarkAreachart/TotalBenchmarkAreachart.jsx";
83
83
  export { default as KpiFilter } from "./components/KpiFilter/KpiFilter.jsx";
84
+ export { default as FooterBranding } from "./components/Footer/FooterBranding.jsx";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta327",
3
+ "version": "2.0.0-beta329",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",