nestiq-component-library 1.1.34 → 1.1.36
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/dist/assets/images/card-arrow-left.28090aba4b4f2006.svg +4 -0
- package/dist/assets/images/card-arrow-right.c60af4cbbd49f3aa.svg +4 -0
- package/dist/assets/images/more.1e158adc48fbb406.svg +12 -0
- package/dist/components/NewPropertyCard/NewPropertyCard.d.ts +28 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +148 -6
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +149 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/card-arrow-left.svg +4 -0
- package/src/assets/images/card-arrow-right.svg +4 -0
- package/src/assets/images/more.svg +12 -0
- package/src/components/NewPropertyCard/NewPropertyCard.css +368 -0
- package/src/components/NewPropertyCard/NewPropertyCard.tsx +274 -0
- package/src/components/NewPropertyCard/PropertyDaet.json +1210 -0
- package/src/index.tsx +1 -0
package/src/index.tsx
CHANGED
|
@@ -9,6 +9,7 @@ export { default as PropertyImageList } from "./components/PropertyImageList//Pr
|
|
|
9
9
|
export { default as PropertyCard } from "./components/PropertyCard//PropertyCard";
|
|
10
10
|
export { default as SharePopup } from "./components/SharePopup/SharePopup";
|
|
11
11
|
export { default as FloorPlanPopup } from "./components/FloorPlanPopup/FloorPlanPopup";
|
|
12
|
+
export { default as NewPropertyCard } from "./components/NewPropertyCard/NewPropertyCard";
|
|
12
13
|
|
|
13
14
|
// TOASTER WRAPPER AND FUNCTION
|
|
14
15
|
export {
|