@secondstaxorg/sscomp 1.6.5 → 1.6.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.6.5",
3
+ "version": "1.6.7",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -8,4 +8,8 @@ export interface AuditProps {
8
8
  logDescription: string;
9
9
  reference?: string;
10
10
  }[];
11
+ variant?: 'default' | 'grey';
12
+ hideTimestamp?: boolean;
13
+ hideUser?: boolean;
14
+ hideReference?: boolean;
11
15
  }
@@ -2,5 +2,6 @@ export declare const ChartContainer: import("styled-components").StyledComponent
2
2
  export declare const GraphArea: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const TextArea: import("styled-components").StyledComponent<"div", any, {}, never>;
4
4
  export declare const ExchangeCurr: import("styled-components").StyledComponent<"div", any, {}, never>;
5
- export declare const RateInfo: import("styled-components").StyledComponent<"p", any, {}, never>;
5
+ export declare const RateInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export declare const ExchangeRate: import("styled-components").StyledComponent<"p", any, {}, never>;
6
7
  export declare const RateDate: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -2,5 +2,6 @@ export declare const ChartContainer: import("styled-components").StyledComponent
2
2
  export declare const GraphArea: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const TextArea: import("styled-components").StyledComponent<"div", any, {}, never>;
4
4
  export declare const ExchangeCurr: import("styled-components").StyledComponent<"div", any, {}, never>;
5
- export declare const RateInfo: import("styled-components").StyledComponent<"p", any, {}, never>;
5
+ export declare const RateInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export declare const ExchangeRate: import("styled-components").StyledComponent<"p", any, {}, never>;
6
7
  export declare const RateDate: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -2,5 +2,4 @@ export declare const ConsentContainer: import("styled-components").StyledCompone
2
2
  export declare const ConsentNotice: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const ConsentHeading: import("styled-components").StyledComponent<"h5", any, {}, never>;
4
4
  export declare const ConsentDesc: import("styled-components").StyledComponent<"p", any, {}, never>;
5
- export declare const ConsentButton: import("styled-components").StyledComponent<"button", any, {}, never>;
6
5
  export declare const ConsentButtonsContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -33,5 +33,5 @@ export interface DropdownProps {
33
33
  * Boolean to specify whether the list is searchable
34
34
  */
35
35
  searchable?: boolean;
36
- width?: number;
36
+ width?: number | "fit-content";
37
37
  }
@@ -1,6 +1 @@
1
1
  export declare const FooterContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
- export declare const FooterArea: import("styled-components").StyledComponent<"div", any, {}, never>;
3
- export declare const AboutSSX: import("styled-components").StyledComponent<"div", any, {}, never>;
4
- export declare const SSXInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
5
- export declare const CopyrightArea: import("styled-components").StyledComponent<"div", any, {}, never>;
6
- export declare const CopyrightText: import("styled-components").StyledComponent<"p", any, {}, never>;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const FooterNew: () => JSX.Element;
3
+ export default FooterNew;
@@ -0,0 +1 @@
1
+ export declare const FooterContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const FooterOld: () => JSX.Element;
3
+ export default FooterOld;
@@ -0,0 +1,6 @@
1
+ export declare const FooterContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const FooterArea: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const AboutSSX: import("styled-components").StyledComponent<"div", any, {}, never>;
4
+ export declare const SSXInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
5
+ export declare const CopyrightArea: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export declare const CopyrightText: import("styled-components").StyledComponent<"p", any, {}, never>;
@@ -1,11 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import './style.css';
3
- export interface LoaderProps {
4
- /**
5
- * Variant of the loader whether
6
- */
7
- variant: 'primary' | 'error';
8
- }
3
+ import { LoaderProps } from "./type";
9
4
  /**
10
5
  * Component for displaying a loading spinner for when data is being loaded
11
6
  */
@@ -0,0 +1,6 @@
1
+ export interface LoaderProps {
2
+ /**
3
+ * Variant of the loader whether
4
+ */
5
+ variant: 'primary' | 'error';
6
+ }
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { SelectorProps } from "./types";
3
+ /**
4
+ * Component for making selections. Usage could be in an onboarding process
5
+ */
6
+ declare const Selector: (props: SelectorProps) => JSX.Element;
7
+ export default Selector;
@@ -10,5 +10,5 @@ export interface statusProps {
10
10
  /**
11
11
  * How wide should the badge be
12
12
  */
13
- width?: number;
13
+ width?: number | "fit-content";
14
14
  }
@@ -16,5 +16,5 @@ export interface TextFieldProps extends React.InputHTMLAttributes<HTMLInputEleme
16
16
  * The initial value of the field to be displayed in the component
17
17
  */
18
18
  initialVal?: string | number;
19
- width?: number;
19
+ width?: number | 'fit-content' | '100%';
20
20
  }
@@ -21,7 +21,7 @@ export { default as DateRangePicker } from './DateRangePicker/DateRangePicker';
21
21
  export { default as DisplayField } from './DisplayField/DisplayField';
22
22
  export { default as DropdownList } from './DropdownList/DropdownList';
23
23
  export { default as ExchangeRates } from './ExchangeRates/ExchangeRates';
24
- export { default as Footer } from './Footer/Footer';
24
+ export { default as FooterNew } from './FooterNew/FooterNew';
25
25
  export { default as Indices } from './Indices/Indices';
26
26
  export { default as LoadingShimmer } from './LoadingShimmer/LoadingShimmer';
27
27
  export { default as LoadingSpinner } from './LoadingSpinner/LoadingSpinner';
@@ -64,3 +64,4 @@ export { default as SSXBar } from './SSXBar/SSXBar';
64
64
  export { default as BidsCards } from './BidsCards/BidsCard';
65
65
  export { default as TablePrimary } from './TablePrimary';
66
66
  export { default as TableAlternative } from './TableAlternative';
67
+ export { default as Selector } from './Selector/Selector';