New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

join-web-components-test

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

join-web-components-test

Web components' library for Join Stories built from https://join-stories.com

latest
npmnpm
Version
2.3.0
Version published
Weekly downloads
2
100%
Maintainers
1
Weekly downloads
 
Created
Source

join-components

NPM

Classic integration

<script type="text/javascript" src="https://unpkg.com/join-web-components@2.2.0"></script>

And then you can directly use our web components in your html files

<join-list-container team-id="join-demo" alias="join-stories-default-all" ></join-list-container>

or

<join-story-container team-id="join-demo" alias="join-stories-default-all" type="iframe" height="700"></join-list-container>

React integration example

Install the package

  • yarn add join-web-components or npm install join-web-components

Find out the codesandbox.io

join-list-component

AttributeTypeDefaultDescription
team-idstringid of the team to match the associated stories from the Studio
aliasstringAlias of the container to match the associated stories from the Studio
shapeenum: { 'round', 'square', 'rounded-square', 'card' }'round'Different shape of container item (see demo)
typeenum: { 'iframe', 'default' }'default'It can be either an immersive iframe or a classic container (see demo)
justify-contentenum: { 'flex-start', 'center', 'flex-end' }'center'Flex alignement applied on the container
limitnumber10Number of stories fetched
sort-byenum: { 'asc', 'desc', 'ordered' }'desc'Either you can sort by last edition date (asc or desc) either by an order fixed from the Studio
border-colorsarray[ 'red', 'orange', 'yellow' ]Border colors (Hexa, rgba...)
custom-border-gradientstringAdd a custom gradient to the border of the container item
heightnumber100Width is being calculate based on the height
spacingnumberThe space between element
show-labelsbooleanfalseOption to display the labels under the story (You need to configure the label in the studio
labels-styleobject{}Add css properties to add to your label. (see demo) Warning : padding need to be configure through verticalPadding and horizontalPadding. Properties should be write as
labels-line-countnumber1Number of lines the label can be written on
inner-colorstring'white'The color of the inner border
outer-border-sizenumber2Size of the outer border
inner-border-sizenumber2size of the inner border

Integration Examples

Containers With Default Labels

<join-list-container  team-id="join-demo"
                      alias="join-stories-default-all"
                      show-labels
></join-list-container>

Containers With customized Label

<join-list-container 
                    team-id="join-demo"
                    alias="join-stories-default-all"
                    spacing="25"
                    show-labels
                    labels-style='{
                        "fontSize" : 11.2,
                        "fontWeight":550,
                        "backgroundColor": "white",
                        "fontFamily": "museo-sans, sans-serif",
                        "verticalPadding":3, "horizontalPadding":10,
                        "textTransform": "uppercase",
                        "textDecoration": "none"
                    }'
                    sort-by="ordered"
    ></join-list-container>

join-story-component

Documentation coming soon..

FAQs

Package last updated on 29 Jul 2020

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