@smui/slider
Advanced tools
Comparing version 5.0.1 to 6.0.0-beta.0
@@ -6,2 +6,31 @@ # Change Log | ||
# [6.0.0-beta.0](https://github.com/hperrin/svelte-material-ui/compare/v5.0.1...v6.0.0-beta.0) (2021-11-17) | ||
### Bug Fixes | ||
* get sass compiling for all packages ([6405961](https://github.com/hperrin/svelte-material-ui/commit/6405961324c340098f00b942ecbffe9071f0c01d)) | ||
* rm deprecation warn by updating to material 12 + breaking changes ([e3e95e1](https://github.com/hperrin/svelte-material-ui/commit/e3e95e1c3e499e5332cac6d15790505db58d268d)) | ||
* update other packages, move svelte to peerDependencies ([2c1b137](https://github.com/hperrin/svelte-material-ui/commit/2c1b1370e10503110421bd66bcb31a81e57cf182)) | ||
* use mdc-web's sass imports and include sass from dev packages ([5ccdf53](https://github.com/hperrin/svelte-material-ui/commit/5ccdf532921d884aab71661c520c33b1b06ac7bd)) | ||
### Features | ||
* let slider's props be changed after init ([9043afe](https://github.com/hperrin/svelte-material-ui/commit/9043afe669f283501695853206278c5d271708c2)) | ||
* new package directory structure, include stripped svelte files so no preprocess needed ([382e78d](https://github.com/hperrin/svelte-material-ui/commit/382e78dc4d9b6ddfd7832bdfd90bad0cea402b1d)) | ||
* remove styled endpoints and update readme and installation docs ([c8755d4](https://github.com/hperrin/svelte-material-ui/commit/c8755d41a24658b927089f8193d18b30df28e2a7)) | ||
* rename MDC events to SMUI events ([55effc6](https://github.com/hperrin/svelte-material-ui/commit/55effc6e92e04cb6d27964e1bb30d4c507922e23)) | ||
* upgrade mdc-web packages to v13 ([9f0457f](https://github.com/hperrin/svelte-material-ui/commit/9f0457f3bcd8c451c66392fc2a19bc60b5f1e958)) | ||
### BREAKING CHANGES | ||
* No more styled endpoints, so the advanced styling | ||
method now requires that you import the Sass yourself. | ||
## [5.0.1](https://github.com/hperrin/svelte-material-ui/compare/v5.0.0...v5.0.1) (2021-11-16) | ||
@@ -8,0 +37,0 @@ |
{ | ||
"name": "@smui/slider", | ||
"version": "5.0.1", | ||
"version": "6.0.0-beta.0", | ||
"description": "Svelte Material UI - Slider", | ||
"type": "module", | ||
"module": "index.js", | ||
"types": "index.d.ts", | ||
"module": "dist/index.js", | ||
"types": "src/index.ts", | ||
"keywords": [ | ||
@@ -18,5 +18,6 @@ "svelte", | ||
"scripts": { | ||
"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", | ||
"build": "npm run build:js && npm run build:svelte && npm run build:sass", | ||
"build:js": "tsc -p . --outDir dist/ --rootDir src/", | ||
"build:svelte": "svelte-strip strip src/ dist", | ||
"build:sass": "sass --no-source-map -I node_modules -I ../smui-theme/node_modules -I ../../node_modules _style.scss bare.css", | ||
"clean": "git status --ignored -u --porcelain . | grep -v node_modules/ | grep -e '^!! ' | sed 's/^!! packages\\/[a-z-]*\\///g' | tr '\\n' ' ' | xargs rm", | ||
@@ -39,15 +40,16 @@ "prepare": "npm run build", | ||
"dependencies": { | ||
"@material/dom": "^11.0.0", | ||
"@material/slider": "^11.0.0", | ||
"@smui/common": "^5.0.1", | ||
"@smui/ripple": "^5.0.1", | ||
"svelte2tsx": "^0.4.6" | ||
"@material/dom": "^13.0.0", | ||
"@material/slider": "^13.0.0", | ||
"@smui/common": "^6.0.0-beta.0", | ||
"@smui/ripple": "^6.0.0-beta.0", | ||
"svelte2tsx": "^0.4.8" | ||
}, | ||
"devDependencies": { | ||
"@tsconfig/svelte": "^2.0.1", | ||
"sass": "~1.39.2", | ||
"sass": "^1.43.4", | ||
"svelte-strip": "^1.0.0", | ||
"tslib": "^2.3.1", | ||
"typescript": "^4.4.2" | ||
"typescript": "^4.4.4" | ||
}, | ||
"gitHead": "164cfdec3a46175a3ab2c1db12298b3d566a36b2" | ||
"gitHead": "e3eacd1b9f5714d4ce66d93b45d8c97c905e732d" | ||
} |
@@ -19,2 +19,2 @@ # Svelte Material UI - Slider | ||
See [Slider](https://github.com/material-components/material-components-web/tree/v11.0.0/packages/mdc-slider) in MDC-Web for information about the upstream library's architecture. | ||
See [Slider](https://github.com/material-components/material-components-web/tree/v13.0.0/packages/mdc-slider) in MDC-Web for information about the upstream library's architecture. |
@@ -9,4 +9,4 @@ { | ||
}, | ||
"include": ["**/*.ts", "**/*.svelte"], | ||
"include": ["src/**/*.ts", "src/**/*.svelte"], | ||
"exclude": ["node_modules/*", "**/*.spec.ts"] | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
104515
735
5
20
3
+ Added@material/animation@13.0.0(transitive)
+ Added@material/base@13.0.0(transitive)
+ Added@material/dom@13.0.0(transitive)
+ Added@material/elevation@13.0.0(transitive)
+ Added@material/feature-targeting@13.0.0(transitive)
+ Added@material/ripple@13.0.0(transitive)
+ Added@material/rtl@13.0.0(transitive)
+ Added@material/slider@13.0.0(transitive)
+ Added@material/theme@13.0.0(transitive)
+ Added@material/typography@13.0.0(transitive)
+ Added@smui/common@6.1.4(transitive)
+ Added@smui/ripple@6.1.4(transitive)
+ Added@tsconfig/svelte@3.0.0(transitive)
+ Addedsvelte2tsx@0.5.23(transitive)
- Removed@material/animation@11.0.0(transitive)
- Removed@material/base@11.0.0(transitive)
- Removed@material/dom@11.0.0(transitive)
- Removed@material/elevation@11.0.0(transitive)
- Removed@material/feature-targeting@11.0.0(transitive)
- Removed@material/ripple@11.0.0(transitive)
- Removed@material/rtl@11.0.0(transitive)
- Removed@material/slider@11.0.0(transitive)
- Removed@material/theme@11.0.0(transitive)
- Removed@material/typography@11.0.0(transitive)
- Removed@smui/common@5.0.1(transitive)
- Removed@smui/ripple@5.0.1(transitive)
- Removed@tsconfig/svelte@2.0.1(transitive)
- Removedanymatch@3.1.3(transitive)
- Removedbinary-extensions@2.3.0(transitive)
- Removedbraces@3.0.3(transitive)
- Removedchokidar@3.6.0(transitive)
- Removedfill-range@7.1.1(transitive)
- Removedfsevents@2.3.3(transitive)
- Removedglob-parent@5.1.2(transitive)
- Removedis-binary-path@2.1.0(transitive)
- Removedis-extglob@2.1.1(transitive)
- Removedis-glob@4.0.3(transitive)
- Removedis-number@7.0.0(transitive)
- Removednormalize-path@3.0.0(transitive)
- Removedpicomatch@2.3.1(transitive)
- Removedreaddirp@3.6.0(transitive)
- Removedsass@1.39.2(transitive)
- Removedto-regex-range@5.0.1(transitive)
Updated@material/dom@^13.0.0
Updated@material/slider@^13.0.0
Updated@smui/common@^6.0.0-beta.0
Updated@smui/ripple@^6.0.0-beta.0
Updatedsvelte2tsx@^0.4.8