nestiq-component-library 1.1.167 → 1.1.169

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.
@@ -40,6 +40,7 @@ interface PopupProps {
40
40
  selectedFloorPlan?: string;
41
41
  pictures: { contentUrl: string; pictureType: { id: number } }[];
42
42
  };
43
+ userData?: { firstname: string; lastname: string; company: string };
43
44
  Impliment: any;
44
45
  baseUrl: string;
45
46
  themesList: any;
@@ -299,31 +300,40 @@ export default function PropertyCard(props: PopupProps) {
299
300
  )}
300
301
  </div>
301
302
  </div> */}
302
- {props.Impliment && (
303
- <div className="d-lex flex-column ">
304
- <div className="wrapperCompanySec d-flex justify-content-around flex-row">
305
- <div className="d-flex flex-column col-4 justify-content-between ">
306
- <img src={immooly} alt="Logo" className="immooly" />
307
- </div>
308
- <div className="d-flex flex-column align-items-center justify-content-center">
309
- <div className="d-flex flex-column text-center">
310
- <span className="">Firstname Firstname</span>
311
- <span>Your company</span>
312
- </div>
313
- {/* <button
314
- className="kontactbutton_cc text-light "
315
- // onClick={handleMessagPopUp}
316
- role="button"
317
- >
318
- <span className="kontact-button-text">
319
- Kontakt aufnehmen{" "}
320
- </span>
321
- </button> */}
303
+ <div className="d-lex flex-column ">
304
+ <div className="wrapperCompanySec d-flex justify-content-around flex-row">
305
+ <div className="d-flex flex-column col-4 justify-content-between ">
306
+ <img src={immooly} alt="Logo" className="immooly" />
307
+ </div>
308
+ <div className="d-flex flex-column align-items-center justify-content-center">
309
+ <div className="d-flex flex-column text-center">
310
+ <span className="fw-bold">
311
+ {props.userData
312
+ ? `${props.userData.firstname} ${props.userData.lastname}`
313
+ : "Firstname Lastname"}
314
+ </span>
315
+ <span className="fst-italic fw-normal">
316
+ {props.userData?.company
317
+ ? props.userData.company
318
+ : "Your Company"}
319
+ </span>
322
320
  </div>
321
+ {/* {props.userData && (
322
+ <button
323
+ className="kontactbutton_cc text-light "
324
+ // onClick={handleMessagPopUp}
325
+ role="button"
326
+ >
327
+ <span className="kontact-button-text">
328
+ Kontakt aufnehmen{" "}
329
+ </span>
330
+ </button>
331
+ )} */}
323
332
  </div>
324
333
  </div>
325
- )}
326
- {!props.Impliment && (
334
+ </div>
335
+
336
+ {/* {!props.Impliment && (
327
337
  <div
328
338
  className="d-lex flex-column "
329
339
  style={{
@@ -352,7 +362,7 @@ export default function PropertyCard(props: PopupProps) {
352
362
  </div>
353
363
  </div>
354
364
  </div>
355
- )}
365
+ )} */}
356
366
  </div>
357
367
  {/* {floorPlan && (
358
368
  <FloorPlanPopup
@@ -14,7 +14,7 @@
14
14
  color: #1b1b1b;
15
15
  }
16
16
 
17
- .closeIcon {
17
+ .closeIcon_c {
18
18
  width: 16px;
19
19
  height: 16px;
20
20
  cursor: pointer;
@@ -117,7 +117,7 @@
117
117
  }
118
118
  .shareSection-Error {
119
119
  height: 400px;
120
- padding:10px;
120
+ padding: 10px;
121
121
  border-radius: 16px;
122
122
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
123
123
  border: solid 1px #d7d9e3;
@@ -186,14 +186,14 @@
186
186
  border-color: #000;
187
187
  border-width: 2px;
188
188
  }
189
- .Line-9, .Line-10 {
189
+ .Line-9,
190
+ .Line-10 {
190
191
  height: 1px;
191
192
  flex-grow: 1;
192
193
  background-color: rgba(140, 140, 140, 0.5);
193
- max-width:23rem;
194
+ max-width: 23rem;
194
195
  align-self: center;
195
196
  align-content: center;
196
-
197
197
  }
198
198
 
199
199
  .middle-container {
@@ -205,7 +205,7 @@
205
205
  .middle-text {
206
206
  margin: 25px 25px;
207
207
  }
208
- .google-button{
208
+ .google-button {
209
209
  width: 260px;
210
210
  height: 45px;
211
211
  flex-grow: 0;
@@ -217,22 +217,18 @@
217
217
  padding: 12px 24px;
218
218
  border-radius: 4px;
219
219
  background-color: #000000;
220
- background: linear-gradient(to top, #000 , #666 );
221
-
222
-
223
- }
224
- .Account-popup{
225
-
226
- height: 713px;
227
- padding: 10px;
228
- border-radius: 16px;
229
- box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
230
- border: solid 1px #d7d9e3;
231
- background-color: #fff;
232
- max-width: 1000px;
233
-
234
- }
235
- .lightertxt{
220
+ background: linear-gradient(to top, #000, #666);
221
+ }
222
+ .Account-popup {
223
+ height: 713px;
224
+ padding: 10px;
225
+ border-radius: 16px;
226
+ box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
227
+ border: solid 1px #d7d9e3;
228
+ background-color: #fff;
229
+ max-width: 1000px;
230
+ }
231
+ .lightertxt {
236
232
  color: #797979;
237
233
  }
238
234
 
@@ -312,7 +308,7 @@
312
308
  padding: 0 24px;
313
309
  border-radius: 16px;
314
310
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
315
- background-image: linear-gradient(to top, #000 , #666);
311
+ background-image: linear-gradient(to top, #000, #666);
316
312
  color: white;
317
313
  }
318
314
  .Tag {
@@ -326,7 +322,12 @@
326
322
  padding: 0 24px;
327
323
  border-radius: 16px;
328
324
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
329
- background-image: linear-gradient(to top, rgba(255, 0, 0, 0), rgba(255,0,0,1));}
325
+ background-image: linear-gradient(
326
+ to top,
327
+ rgba(255, 0, 0, 0),
328
+ rgba(255, 0, 0, 1)
329
+ );
330
+ }
330
331
  .TagW {
331
332
  height: 40px;
332
333
  flex-grow: 1;
@@ -339,10 +340,9 @@ background-image: linear-gradient(to top, rgba(255, 0, 0, 0), rgba(255,0,0,1));}
339
340
  border-radius: 16px;
340
341
  border: solid 1px #000;
341
342
  background-color: #fff;
342
- color: #000;
343
-
343
+ color: #000;
344
344
  }
345
345
  /* */
346
- .response{
346
+ .response {
347
347
  max-width: 1280px;
348
- }
348
+ }
@@ -18,7 +18,7 @@ export default function SharePopup(props: PopupProps) {
18
18
  const handleClose = () => {
19
19
  props.onClick();
20
20
  };
21
-
21
+
22
22
  const urlInputRef = useRef<HTMLInputElement | null>(null);
23
23
 
24
24
  const copyToClipboard = () => {
@@ -36,7 +36,7 @@ export default function SharePopup(props: PopupProps) {
36
36
  <img
37
37
  src={x}
38
38
  alt="close"
39
- className="closeIcon me-2"
39
+ className="closeIcon_c me-2"
40
40
  onClick={handleClose}
41
41
  />
42
42
  </div>