@secondstaxorg/sscomp 1.6.6 → 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.6",
3
+ "version": "1.6.7",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -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>;
@@ -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';