
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
proximitis-detailblocks-react
Advanced tools
React UI library to render Proximitis Detail Blocks
React UI library to render Proximitis Detail`s Blocks. This npm package is useful primary for Proximitis customers.
List of curently supported Detail Blocks:
yarn add proximitis-detailblocks-react
Every components needs Theme, that has this type:
export type Theme = {
__typename?: 'Theme';
id: string;
primaryColor: string;
backgroundColor: string;
textColor: string;
fontSize: number;
lineHeight: number;
spacing: number;
titleColor: string;
titleFontSize: number;
headingColor: string;
headingFontSize: number;
buttonBackground: string;
buttonTextColor: string;
};
Props:
import React, { Component } from 'react';
import { Title } from 'proximitis-detailblocks-react';
<Title text="Text to be rendered" theme={theme} />;
Props:
import React, { Component } from 'react';
import { Heading } from 'proximitis-detailblocks-react';
<Heading text="Text to be rendered" theme={theme} />;
Props:
import React, { Component } from 'react';
import { Paragraph } from 'proximitis-detailblocks-react';
<Paragraph text="Text to be rendered" theme={theme} />;
Props:
101
that stands for fullwidth when margins are ignored.)import React, { Component } from 'react';
import { Image } from 'proximitis-detailblocks-react';
<Image src="https://placehold.it/300x300" witdh={100} theme={theme} index={2} />;
Props:
import React, { Component } from 'react';
import { Button } from 'proximitis-detailblocks-react';
<Button link="https://example.com" text="Button Text" theme={theme} />;
Props:
import React, { Component } from 'react';
import { OrderedList } from 'proximitis-detailblocks-react';
<OrderedList text="Text to be rendered" theme={theme} />;
Props:
import React, { Component } from 'react';
import { UnorderedList } from 'proximitis-detailblocks-react';
<UnorderedList text="Text to be rendered" theme={theme} />;
MIT © proximitis
FAQs
React UI library to render Proximitis Detail Blocks
The npm package proximitis-detailblocks-react receives a total of 0 weekly downloads. As such, proximitis-detailblocks-react popularity was classified as not popular.
We found that proximitis-detailblocks-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.