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 { P2pCompany } from "../../types";
1
+ import { DetailCardCompany } from "../../types";
2
2
  interface CompanyDetailsCardProps {
3
- company: P2pCompany;
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 { P2pCompany } from "../../types";
2
+ import { DetailCardCompany } from "../../types";
3
3
  interface CompanyDetailsCardProps {
4
- company: P2pCompany;
4
+ company: DetailCardCompany;
5
5
  viewMore: () => void;
6
6
  descriptionCollapseCount?: number;
7
7
  intialHeight?: string;
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlu-20-ui-library",
3
- "version": "1.3.91",
3
+ "version": "1.3.92",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",