@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/dist/index.css +2 -1
- package/dist/index.es.css +2 -1
- package/dist/index.es.js +450 -441
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1814 -1672
- package/dist/index.js.map +1 -1
- package/dist/index.min.css +2 -1
- package/dist/index.min.js +416 -407
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/AuditLog/type.d.ts +4 -0
- package/types/components/Chart/style.d.ts +2 -1
- package/types/components/ChartMedium/style.d.ts +2 -1
- package/types/components/CookieConsent/style.d.ts +0 -1
- package/types/components/DropdownList/type.d.ts +1 -1
- package/types/components/Footer/style.d.ts +0 -5
- package/types/components/FooterNew/FooterNew.d.ts +3 -0
- package/types/components/FooterNew/style.d.ts +1 -0
- package/types/components/FooterOld/FooterOld.d.ts +3 -0
- package/types/components/FooterOld/style.d.ts +6 -0
- package/types/components/LoadingSpinner/LoadingSpinner.d.ts +1 -6
- package/types/components/LoadingSpinner/type.d.ts +6 -0
- package/types/components/Selector/Selector.d.ts +7 -0
- package/types/components/StatusBadge/type.d.ts +1 -1
- package/types/components/TextField/type.d.ts +1 -1
- package/types/components/index.d.ts +2 -1
package/package.json
CHANGED
|
@@ -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<"
|
|
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<"
|
|
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>;
|
|
@@ -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 @@
|
|
|
1
|
+
export declare const FooterContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -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
|
-
|
|
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
|
*/
|
|
@@ -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
|
|
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';
|