Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@encheres-immo/auction-widget

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@encheres-immo/auction-widget

Bring our real-estate auction widget to your website, powered by SolidJS & Enchères Immo's API

  • 0.3.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
78
increased by25.81%
Maintainers
1
Weekly downloads
 
Created
Source

Enchères Immo's auction widget

Add a real-estate auction widget to your website, powered by Enchères Immo's API 🚀

Prerequisites

To use this widget, you need an API key from Enchères Immo. If you are a real estate professional and not yet a partner of Enchères Immo, please book a demo to get started. If you are already a partner, contact us to get your API key.

Installation

This widget is available as a package on npm. To install it, run:

# Using npm
npm install @encheresimmo/auction-widget
# Using pnpm
pnpm install @encheresimmo/auction-widget
# Using yarn (not recommended)
yarn add @encheresimmo/auction-widget

This widget is also available as a standalone script. To use it, add the following script and style tags to your HTML file:

<script src="https://cdn.jsdelivr.net/npm/@encheres-immo/auction-widget@0/dist/auction-widget.js" defer></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@encheres-immo/auction-widget@0/dist/auction-widget.css">

Usage

To use the widget, add the following HTML tag to your website, and replace YOUR API KEY with your Enchères Immo API key and PROPERTY ID with the Enchères Immo's ID of the property you want to display.

<div id="auction-widget" api-key="YOUR API KEY" property-id="PROPERTY ID"></div>

Alternatively, you can retrieve your property from a CRM by replacing property-id by source (e.g. source="APIMO"), source-id (the ID of the property in the CRM), and source-agency-id (the ID of the agency in the CRM).

<div id="auction-widget" api-key="YOUR API KEY" source="APIMO" source-id="APIMO PROPERTY ID" source-agency-id="APIMO AGENCY ID"></div>

Customization

You can customize the widget by setting CSS variables in your website's stylesheet. Here are the available variables:

Variable nameDefault value
--auction-widget-highlight-color#ef673d
--auction-widget-dark-color#002d40
--auction-widget-border-radius0.5rem
--auction-widget-btn-radius0.5rem
--auction-widget-base-fontsans-serif
--auction-widget-title-fontsans-serif
--auction-widget-countdown-fontmonospace

For example, to change the highlight color to blue, add the following CSS to your website's stylesheet:

:root {
  --auction-widget-highlight-color: blue;
}

To override the default styles, you can also use the layer @auction-widget-override :

@auction-widget {
  .auction-widget-label {
    border-radius: 1rem;
  }
}

Finally—as required by OAuth2—authentication pages are hosted on the Enchères Immo domain. You can customize the look and feel of these pages through your Enchères Immo "Custom Theme" settings.

How to contribute

WORK IN PROGRESS. We will soon open-source this widget and provide guidelines on how to contribute. Stay tuned!

Useful commands

All commands are run from the root of the package.

CommandDescription
pnpm installInstall dependencies
pnpm run buildBuild the widget
pnpm run testRun tests

FAQs

Package last updated on 29 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc