New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

frs-hide-scrollbar

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frs-hide-scrollbar - npm Package Compare versions

Comparing version

to
2.0.0-alpha.0

dist/frs-hide-scrollbar.css

11

CHANGELOG.md

@@ -5,2 +5,13 @@ # Changelog

## [2.0.0-alpha.0](https://github.com/FRSource/FRS-hide-scrollbar/compare/v1.0.1...v2.0.0-alpha.0) (2021-01-03)
### ⚠ BREAKING CHANGES
* drop the whole JS API - the package is CSS-only from now on
### Features
* move to css-only implementation ([39d99ab](https://github.com/FRSource/FRS-hide-scrollbar/commit/39d99ab0819bb39c050a578901eb1c2a7952505f))
### [1.0.1](https://github.com/FRSource/FRS-hide-scrollbar/compare/v1.0.0...v1.0.1) (2021-01-02)

@@ -7,0 +18,0 @@

46

package.json
{
"name": "frs-hide-scrollbar",
"version": "1.0.1",
"description": "Easy & lightweight solution for cross-browser scrollbar hiding",
"source": "src/index.mjs",
"main": "dist/FRS-hide-scrollbar.js",
"module": "dist/FRS-hide-scrollbar.mjs",
"umd:main": "dist/FRS-hide-scrollbar.umd.js",
"unpkg": "dist/FRS-hide-scrollbar.umd.js",
"esnext": "dist/FRS-hide-scrollbar.js",
"version": "2.0.0-alpha.0",
"description": "CSS-only & ease-to-use solution for cross-browser scrollbar hiding",
"source": "src/index.scss",
"main": "dist/frs-hide-scrollbar.css",
"scripts": {
"pretest": "yarn lint",
"test": "tap --node-arg=--experimental-modules ./src/scripts/*.spec.test.js",
"test-coverage": "yarn test && tap --100 --coverage-report=html",
"test-coverage:ci": "yarn test && tap --100 --coverage-report=text-lcov | coveralls",
"prestart": "yarn clean",
"start": "microbundle watch -o docs --name FRSHideScrollbar",
"start": "microbundle watch -o docs --name frs-hide-scrollbar",
"prebuild": "yarn clean",
"build": "yarn build:bundle && yarn build:example",
"build:bundle": "microbundle --compress --name FRSHideScrollbar",
"build:bundle": "microbundle --compress -o dist/frs-hide-scrollbar.js -f cjs",
"postbuild:bundle": "yarn clean:dist:js",
"build:example": "cpy dist/* docs",
"prerelease": "yarn test-coverage && yarn build && git add dist && git add docs",
"release": "yarn build && standard-version",
"prerelease": "yarn build && git add dist && git add docs",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && yarn publish",
"clean": "rimraf dist/**/* && rimraf docs/*.{js,mjs,css,map} && rimraf coverage",
"lint": "standard \"src/**/*.mjs\" \"src/**/*.test.js\"",
"lint.fix": "yarn lint --fix"
"clean": "rimraf dist/**/* && rimraf docs/*.{js,mjs,css,map}",
"clean:dist:js": "rimraf dist/*.{js,mjs,js.map}"
},
"author": "Jakub Freisler <FRSgit@users.noreply.github.com>",
"license": "Apache-2.0",
"homepage": "https://frsource.github.io/FRS-hide-scrollbar/",
"homepage": "https://www.frsource.org/FRS-hide-scrollbar/",
"repository": {

@@ -41,7 +33,6 @@ "type": "git",

"simple",
"vanillaJS",
"CSS",
"CSS-only",
"hide scrollbar",
"scrollbar",
"css",
"js"
"scrollbar"
],

@@ -58,12 +49,9 @@ "files": [

"devDependencies": {
"coveralls": "^3.0.7",
"cpy-cli": "^3.0.0",
"jsdom": "^16.1.0",
"microbundle": "^0.13.0",
"rimraf": "^3.0.0",
"standard": "^16.0.3",
"standard-version": "^9.0.0",
"tap": "^14.1.11"
"sass": "^1.32.0",
"standard-version": "^9.0.0"
},
"dependencies": {}
}

@@ -5,19 +5,15 @@ # FRS-hide-scrollbar

[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![Build Status](https://travis-ci.com/FRSource/FRS-hide-scrollbar.svg?branch=master)](https://travis-ci.org/FRSource/FRS-hide-scrollbar)
[![Coverage Status](https://coveralls.io/repos/github/FRSource/FRS-hide-scrollbar/badge.svg?branch=master)](https://coveralls.io/github/FRSource/FRS-hide-scrollbar?branch=master)
[![Dependabot badge](https://api.dependabot.com/badges/status?host=github&repo=FRSource/FRS-hide-scrollbar)](https://dependabot.com/)
[![Dependencies none](https://img.shields.io/badge/dependencies-none-brightgreen)](https://david-dm.org/frsource/frs-hide-scrollbar)
[![Dev dependencies status](https://david-dm.org/frsource/frs-hide-scrollbar/dev-status.svg)](https://david-dm.org/frsource/frs-hide-scrollbar?type=dev)
[![codebeat badge](https://codebeat.co/badges/0b194076-5621-478b-9169-ee527a5ce4a4)](https://codebeat.co/projects/github-com-frsource-frs-hide-scrollbar-master)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
[![Bundle size](https://img.shields.io/bundlephobia/minzip/frs-hide-scrollbar)](https://bundlephobia.com/result?p=frs-hide-scrollbar)
**FRS-hide-scrollbar** is a cross-browser (supports both desktop & mobile devices), simple & lightweight library for hiding both horizontal & vertical scrollbars!
**FRS-hide-scrollbar** is a css-only, cross-browser (IE10+, supports both desktop & mobile devices), simple & lightweight library for hiding scrollbars!
To gain better performance, all of heavy-lifting & continuous logic is handled by CSS. Start using **FRS-hide-scrollbar** today by reading documentation below:
Start using **FRS-hide-scrollbar** today by reading documentation below:
## Table of contents
* [Installation](https://frsource.github.io/FRS-hide-scrollbar/installation)
* [Usage](https://frsource.github.io/FRS-hide-scrollbar/usage)
* [Example](https://frsource.github.io/FRS-hide-scrollbar/example)
* [Installation](https://www.frsource.org/FRS-hide-scrollbar/installation)
* [Usage](https://www.frsource.org/FRS-hide-scrollbar/usage)
* [Example](https://www.frsource.org/FRS-hide-scrollbar/example)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet