Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@smui/linear-progress

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smui/linear-progress - npm Package Compare versions

Comparing version 4.2.0 to 5.0.0-beta.0

ambient.d.ts

5

bare.js

@@ -1,2 +0,3 @@

export * from './index.js';
export { default } from './index.js';
export * from './index';
export { default } from './index';
//# sourceMappingURL=bare.js.map

@@ -6,2 +6,22 @@ # Change Log

# [5.0.0-beta.0](https://github.com/hperrin/svelte-material-ui/compare/v4.2.0...v5.0.0-beta.0) (2021-09-14)
### Features
* add prop types for HTML props for components ([f5c6e53](https://github.com/hperrin/svelte-material-ui/commit/f5c6e53390b4cbb2da04f543ef877cf03133fc80))
* got sveltekit working local in dev ([024b19a](https://github.com/hperrin/svelte-material-ui/commit/024b19aed05718b76b027dd2e908f4734d17c060))
* implement js builds of all ts files ([085b829](https://github.com/hperrin/svelte-material-ui/commit/085b82932f75a5c62bb4d5f709a19a8b3cbd12a4))
* migrate circular progress and linear progress to typescript ([ba5dc2a](https://github.com/hperrin/svelte-material-ui/commit/ba5dc2aeece2ff2d99470dee2e2c6bf02af4afdc))
* migrate common and button to typescript ([cf9c6af](https://github.com/hperrin/svelte-material-ui/commit/cf9c6af17c59afc433c58245cc9444aece2195cc))
### BREAKING CHANGES
* Had to rename export "default" from Button to "defaultAction".
# [4.2.0](https://github.com/hperrin/svelte-material-ui/compare/v4.1.0...v4.2.0) (2021-05-05)

@@ -8,0 +28,0 @@

3

index.js
import LinearProgress from './LinearProgress.svelte';
export * from './LinearProgress.types';
export default LinearProgress;
//# sourceMappingURL=index.js.map
{
"name": "@smui/linear-progress",
"version": "4.2.0",
"version": "5.0.0-beta.0",
"description": "Svelte Material UI - Linear Progress",
"type": "module",
"module": "index.js",
"types": "index.d.ts",
"keywords": [

@@ -17,3 +18,6 @@ "svelte",

"scripts": {
"prepare": "sass --no-source-map -I node_modules _style.scss bare.css",
"build": "npm run build:js && npm run build:sass",
"build:js": "tsc",
"build:sass": "sass --no-source-map -I node_modules -I ../../node_modules _style.scss bare.css",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"

@@ -35,8 +39,11 @@ },

"@material/linear-progress": "^11.0.0",
"@smui/common": "^4.2.0"
"@smui/common": "^5.0.0-beta.0"
},
"devDependencies": {
"sass": "^1.32.8"
"@tsconfig/svelte": "^2.0.1",
"sass": "^1.32.11",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"gitHead": "19ae8e223386d3c60daa642d631632c9e089155b"
"gitHead": "64f517242b78ff75df7865fc80f16d1a5c39bcaf"
}

@@ -11,29 +11,6 @@ # Svelte Material UI - Linear Progress

# Demo
# Examples and Usage Information
[See it in action.](https://sveltematerialui.com/demo/linear-progress)
https://sveltematerialui.com/demo/linear-progress
[See the demo code.](/site/src/routes/demo/linear-progress/)
# Whoa There, These Docs are Outdated
The latest SMUI v3 had a lot of changes, and these docs haven't been caught up yet. You should check out the demo page's code to see the latest usage.
# Basic Usage
```svelte
<LinearProgress indeterminate {closed} />
<script>
import LinearProgress from '@smui/linear-progress';
import someAsyncAction from './someAsyncAction.js';
let closed = false;
someAsyncAction(() => {
closed = true;
});
</script>
```
# Exports

@@ -53,3 +30,3 @@

- `progress`: `0` - The progress to indicate. (float between 0 and 1, inclusive)
- `buffer`: `null` - The buffer progress to indicate. (`null` or float between 0 and 1, inclusive)
- `buffer`: `undefined` - The buffer progress to indicate. (`null` or float between 0 and 1, inclusive)

@@ -56,0 +33,0 @@ # More Information

import './_index.scss';
export * from './index.js';
export { default } from './index.js';
export * from './index';
export { default } from './index';
//# sourceMappingURL=styled.js.map

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc