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

@smui/select

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/select - npm Package Compare versions

Comparing version 1.0.0-beta.16 to 1.0.0-beta.17

16

CHANGELOG.md

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

# [1.0.0-beta.17](https://github.com/hperrin/svelte-material-ui/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2019-10-28)
### Bug Fixes
* fixed initial value state of Select component ([4afdfc2](https://github.com/hperrin/svelte-material-ui/commit/4afdfc2fcb760c7acf9a486882078f2698944ec7))
### Features
* update MDC package versions to 3.2.0 ([605753d](https://github.com/hperrin/svelte-material-ui/commit/605753dd3fe121eba2654498f62f8ddd57a9e3b9))
# [1.0.0-beta.16](https://github.com/hperrin/svelte-material-ui/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2019-09-24)

@@ -8,0 +24,0 @@

22

package.json
{
"name": "@smui/select",
"version": "1.0.0-beta.16",
"version": "1.0.0-beta.17",
"description": "Svelte Material UI - Select",

@@ -32,17 +32,17 @@ "keywords": [

"@material/feature-targeting": "^3.1.0",
"@material/ripple": "^3.1.0",
"@material/rtl": "^3.1.0",
"@material/select": "^3.1.0",
"@material/ripple": "^3.2.0",
"@material/rtl": "^3.2.0",
"@material/select": "^3.2.0",
"@smui/common": "^1.0.0-beta.15",
"@smui/floating-label": "^1.0.0-beta.16",
"@smui/line-ripple": "^1.0.0-beta.16",
"@smui/list": "^1.0.0-beta.16",
"@smui/menu": "^1.0.0-beta.16",
"@smui/notched-outline": "^1.0.0-beta.16"
"@smui/floating-label": "^1.0.0-beta.17",
"@smui/line-ripple": "^1.0.0-beta.17",
"@smui/list": "^1.0.0-beta.17",
"@smui/menu": "^1.0.0-beta.17",
"@smui/notched-outline": "^1.0.0-beta.17"
},
"devDependencies": {
"glob-cmd": "0.0.7",
"sass": "^1.23.0-module.beta.1"
"sass": "^1.23.1"
},
"gitHead": "698fab577894bcdefbe797036ca6fdcaf4ee0325"
"gitHead": "210cf4b0f7e643c45c46d390b61cedbc923623ba"
}

@@ -17,4 +17,18 @@ # Svelte Material UI - Select

todo...
```html
<script>
import Select, {Option} from '@smui/select';
let fruits = ['Apple', 'Orange', 'Banana', 'Mango'];
let fruitChoice = '';
</script>
<Select bind:value={fruitChoice} label="Fruit">
<Option value=""></Option>
{#each fruits as fruit}
<Option value={fruit} selected={fruitChoice === fruit}>{fruit}</Option>
{/each}
</Select>
```
# Demo

@@ -21,0 +35,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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