npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@salesforce-ux/c360-card

v0.2.6

Published

A card is a summary of larger set of content with links that drive visitors to more content.

Downloads

17

Readme

@salesforce-ux/c360-card

npm (custom registry)

About

A card is a summary of larger set of content with links that drive visitors to more content.

Getting Started

Let's start by installing c360-card as a dependency of your project with npm.

npm i @salesforce-ux/c360-card

Distributable

After installation, all the distributables for the c360-card are found under /node_modules/@salesforce-ux/c360-card/dist/ folder.

|File Name |Description | |- |- | |card.css |The CSS file specific to c360-card only. It doesnot include the styles for it's parent sds-card. c360-card extends from sds-card| |card.compiled.css |The Compiled CSS file for c360-card.This file includes styles for both c360-card and its parent sds-card. This file is useful for LWC applications.(see below →)| |card.js |The bundled JS file for c360-card component. This file is useful for Non LWC applications.(see below →)|

c360-card Integration

For the sake of understanding, we will categorize the development environment into LWC and Non LWC application.
This Guide will cover the integration approach for these two types of application.

For Lightning Web Component(LWC) Application

Dependency Inclusion

c360-styling-hooks is a styling dependency for c360-card. Hence, this needs to be embedded into your web app in order to make the c360-card render properly.

/* myComponent.css */
@import "@salesforce-ux/c360-styling-hooks/dist/hooks.custom-props.css";

There are also other ways c360-styling-hooks can be embedded. Please checkout the c360-styling-hooks Integration Guide to learn more.

Component CSS Import

/* myComponent.css */
@import "@salesforce-ux/c360-styling-hooks/dist/hooks.custom-props.css";
@import '@salesforce-ux/c360-card/dist/card.compiled.css'

HTML Decoration

After that, the HTML of your LWC component template needs to be decorated to have all the named part attributes as per the component's specification.

For Non LWC Application

Dependency Inclusion Read the section above

Component Import

/* myComponent.js */
import C360Card from "@salesforce-ux/c360-card/dist/card";

Component Registration

/* myComponent.js */
customElements.define('c360-card', C360Card);

Example

Below is one approach to integrate your c360-card component.

Script
/* myComponent.js */
import "@salesforce-ux/c360-styling-hooks/dist/hooks.custom-props.css";
import C360Card from "@salesforce-ux/c360-card/dist/card";
window.customElements.define('c360-card', C360Card);
HTML
<c360-card direction="2" depth="vertical" media="fill">
    <img slot="header-start" src="/img.jpg" width="100%">
    <h2 type-style="display-6" slot="header">Automating Your Business</h2>
    <div type-style="body-2">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor elit vel nulla pharetra   gravida. Sed scelerisque pretium dui, ac commodo ante blandit non.</div>
    <c360-button slot="footer" variant="secondary">
      Read Article
    </c360-button>
</c360-card>

Interactive Demo

To see more examples with interactive demo, please visit c360 Subsytem's Storybook Environment