@secondstaxorg/sscomp 1.9.33 → 1.9.35

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.9.33",
3
+ "version": "1.9.35",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { DetailFieldType } from "./type";
3
+ /**
4
+ * This component allows you to display text as if in a disabled text field
5
+ * */
6
+ declare const DetailField: (props: DetailFieldType) => JSX.Element;
7
+ export default DetailField;
@@ -0,0 +1,2 @@
1
+ export declare const FieldContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const Field: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1,4 @@
1
+ export interface DetailFieldType {
2
+ label: string;
3
+ value?: string;
4
+ }
@@ -80,3 +80,4 @@ export { default as BarChart } from './BarChart/BarChart';
80
80
  export { default as LineChart } from './LineChart/LineChart';
81
81
  export { default as ProgressBar } from './ProgressBar/ProgressBar';
82
82
  export { default as DoughnutChart } from './DoughnutChart/DoughnutChart';
83
+ export { default as DetailField } from './DetailField/DetailField';