@secondstaxorg/sscomp 1.6.59 → 1.6.62

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.59",
3
+ "version": "1.6.62",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -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>;
@@ -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
  }