qlu-20-ui-library 1.3.91 → 1.3.92
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DetailCardCompany } from "../../types";
|
|
2
2
|
interface CompanyDetailsCardProps {
|
|
3
|
-
company:
|
|
3
|
+
company: DetailCardCompany;
|
|
4
4
|
viewMore: () => void;
|
|
5
5
|
descriptionCollapseCount?: number;
|
|
6
6
|
intialHeight?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "./style.scss";
|
|
2
|
-
import {
|
|
2
|
+
import { DetailCardCompany } from "../../types";
|
|
3
3
|
interface CompanyDetailsCardProps {
|
|
4
|
-
company:
|
|
4
|
+
company: DetailCardCompany;
|
|
5
5
|
viewMore: () => void;
|
|
6
6
|
descriptionCollapseCount?: number;
|
|
7
7
|
intialHeight?: string;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -231,4 +231,17 @@ export interface PayChartProps {
|
|
|
231
231
|
inputValues: number[];
|
|
232
232
|
symbol?: string;
|
|
233
233
|
}
|
|
234
|
+
export interface DetailCardCompany {
|
|
235
|
+
description: string;
|
|
236
|
+
headquarter: {
|
|
237
|
+
city?: string | null;
|
|
238
|
+
country?: string | null;
|
|
239
|
+
};
|
|
240
|
+
logo: string;
|
|
241
|
+
staffcount: number;
|
|
242
|
+
name: string;
|
|
243
|
+
industries: string[];
|
|
244
|
+
specialities: string[];
|
|
245
|
+
websiteUrl: string;
|
|
246
|
+
}
|
|
234
247
|
export {};
|
package/dist/types.d.ts
CHANGED
|
@@ -231,4 +231,17 @@ export interface PayChartProps {
|
|
|
231
231
|
inputValues: number[];
|
|
232
232
|
symbol?: string;
|
|
233
233
|
}
|
|
234
|
+
export interface DetailCardCompany {
|
|
235
|
+
description: string;
|
|
236
|
+
headquarter: {
|
|
237
|
+
city?: string | null;
|
|
238
|
+
country?: string | null;
|
|
239
|
+
};
|
|
240
|
+
logo: string;
|
|
241
|
+
staffcount: number;
|
|
242
|
+
name: string;
|
|
243
|
+
industries: string[];
|
|
244
|
+
specialities: string[];
|
|
245
|
+
websiteUrl: string;
|
|
246
|
+
}
|
|
234
247
|
export {};
|