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

safeview

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

safeview

SafeView is a component that allows you to hide senstive information in your app visually.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

SafeView Header

SafeView

package size badge npm version github action build status

SafeView is a component that allows you to hide sensitive information in your app visually, for presentation purposes, and more.

example gif

Installation

with NPM:

npm install safeview

with Yarn:

yarn add safeview

Usage

A basic example of using the base component, all you need to do is import and then wrap your app with it.

import SafeView from 'safeview';

const App = () => {
  return (
        <SafeView>
            // Your React App
        </SafeView>;
  )
};

Specify which element you would like to hide with the property data-safe="true".

const MyComponent = () => {
    return (
        <div>
            <span data-safe>
                // Sensitive info
            <span>
        </div>
    )
}

After you mark the chosen elements you can press Shift + S to filter them out.

S is the default key, but you can change that in the component's props.

API

<SafeView>

The <SafeView> component is the main element of the library and where you control all the functionality besides which element to hide.

// SafeView has the following properties

interface SafeViewProps {
  // Determines which the key will toggle the "SafeMode".
  accessKey?: React.HTMLAttributes<HTMLButtonElement>['accessKey']; // string

  // Determines the filter applied on the targeted elements.
  filter?: 'hidden' | 'blur' | 'black';

  // Allows you to insert a class to the div <SafeView> creates.
  className?: string;
}

Targeting elements to hide

In order to specify to SafeView which element you would like to hide, you need to target it with the property data-safe="true".

<p data-safe>{ sensitive information }</p>

License

SafeView is freely distributable under the terms of the MIT license.

Keywords

react

FAQs

Package last updated on 25 Apr 2022

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