@smui/list
Advanced tools
Comparing version 4.2.0 to 5.0.0-beta.0
@@ -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,31 @@ # 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 card to typescript ([c1a9ef2](https://github.com/hperrin/svelte-material-ui/commit/c1a9ef2477f4e26b863f0cadb33f548a7b35bf8b)) | ||
* migrate chips to typescript ([075f48a](https://github.com/hperrin/svelte-material-ui/commit/075f48af5e16ee34c38307eb15664e1389596736)) | ||
* migrate common and button to typescript ([cf9c6af](https://github.com/hperrin/svelte-material-ui/commit/cf9c6af17c59afc433c58245cc9444aece2195cc)) | ||
* migrate list, checkbox, and radio to typescript ([6b475a5](https://github.com/hperrin/svelte-material-ui/commit/6b475a502daff39ba74c8ea0b29f7930bce2e46c)) | ||
* migrate menu surface and menu to typescript ([b479315](https://github.com/hperrin/svelte-material-ui/commit/b479315f4eccd9b3885eab31993949c8d734b888)) | ||
* migrate select to typescript ([c555fa1](https://github.com/hperrin/svelte-material-ui/commit/c555fa107ac2bc0d9cb8e6547da77ddbb58e2f3b)) | ||
* migrate slider to typescript ([42c8c00](https://github.com/hperrin/svelte-material-ui/commit/42c8c00e71c96c6326feda678e4886b03a1638ad)) | ||
* migrate snackbar to typescript ([b7bb054](https://github.com/hperrin/svelte-material-ui/commit/b7bb05467493029ec4b2092d17bb3c6c891b0d25)) | ||
* migrate switch and form field to typescript ([e012927](https://github.com/hperrin/svelte-material-ui/commit/e0129276104fa4cfd866cbe51448bd57a9e6945f)) | ||
* migrate textfield to typescript ([0010211](https://github.com/hperrin/svelte-material-ui/commit/00102118220c8329aa7fbd3b524f1d95e8cebf02)) | ||
### BREAKING CHANGES | ||
* Renamed SMUI events from like SMUI:component:event to like SMUIComponent:event. | ||
* 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 +37,0 @@ |
10
Group.js
@@ -1,7 +0,7 @@ | ||
import { classAdderBuilder } from '@smui/common/internal.js'; | ||
import Div from '@smui/common/Div.svelte'; | ||
import { classAdderBuilder } from '@smui/common/internal'; | ||
import { Div } from '@smui/common/elements'; | ||
export default classAdderBuilder({ | ||
class: 'mdc-deprecated-list-group', | ||
component: Div, | ||
class: 'mdc-deprecated-list-group', | ||
component: Div, | ||
}); | ||
//# sourceMappingURL=Group.js.map |
46
index.js
import List from './List.svelte'; | ||
import Item from './Item.svelte'; | ||
import Text from './Text.js'; | ||
import PrimaryText from './PrimaryText.js'; | ||
import SecondaryText from './SecondaryText.js'; | ||
import Graphic from './Graphic.svelte'; | ||
import Meta from './Meta.js'; | ||
import Label from './Label.svelte'; | ||
import Group from './Group.js'; | ||
import Subheader from './Subheader.js'; | ||
import Separator from './Separator.svelte'; | ||
export * from './List.types'; | ||
import ItemComponent from './Item.svelte'; | ||
export * from './Item.types'; | ||
const Item = ItemComponent; | ||
import Text from './Text'; | ||
import PrimaryText from './PrimaryText'; | ||
import SecondaryText from './SecondaryText'; | ||
import GraphicComponent from './Graphic.svelte'; | ||
export * from './Graphic.types'; | ||
const Graphic = GraphicComponent; | ||
import Meta from './Meta'; | ||
import LabelComponent from './Label.svelte'; | ||
export * from './Label.types'; | ||
const Label = LabelComponent; | ||
import Group from './Group'; | ||
import Subheader from './Subheader'; | ||
import SeparatorComponent from './Separator.svelte'; | ||
export * from './Separator.types'; | ||
const Separator = SeparatorComponent; | ||
export default List; | ||
export { | ||
Item, | ||
Text, | ||
PrimaryText, | ||
SecondaryText, | ||
Graphic, | ||
Meta, | ||
Label, | ||
Group, | ||
Subheader, | ||
Separator, | ||
}; | ||
export { Item, Text, PrimaryText, SecondaryText, Graphic, Meta, Label, Group, Subheader, Separator, }; | ||
//# sourceMappingURL=index.js.map |
10
Meta.js
@@ -1,7 +0,7 @@ | ||
import { classAdderBuilder } from '@smui/common/internal.js'; | ||
import Span from '@smui/common/Span.svelte'; | ||
import { classAdderBuilder } from '@smui/common/internal'; | ||
import { Span } from '@smui/common/elements'; | ||
export default classAdderBuilder({ | ||
class: 'mdc-deprecated-list-item__meta', | ||
component: Span, | ||
class: 'mdc-deprecated-list-item__meta', | ||
component: Span, | ||
}); | ||
//# sourceMappingURL=Meta.js.map |
{ | ||
"name": "@smui/list", | ||
"version": "4.2.0", | ||
"version": "5.0.0-beta.0", | ||
"description": "Svelte Material UI - List", | ||
"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" | ||
@@ -37,9 +41,12 @@ }, | ||
"@material/list": "^11.0.0", | ||
"@smui/common": "^4.2.0", | ||
"@smui/ripple": "^4.2.0" | ||
"@smui/common": "^5.0.0-beta.0", | ||
"@smui/ripple": "^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" | ||
} |
@@ -1,7 +0,7 @@ | ||
import { classAdderBuilder } from '@smui/common/internal.js'; | ||
import Span from '@smui/common/Span.svelte'; | ||
import { classAdderBuilder } from '@smui/common/internal'; | ||
import { Span } from '@smui/common/elements'; | ||
export default classAdderBuilder({ | ||
class: 'mdc-deprecated-list-item__primary-text', | ||
component: Span, | ||
class: 'mdc-deprecated-list-item__primary-text', | ||
component: Span, | ||
}); | ||
//# sourceMappingURL=PrimaryText.js.map |
@@ -11,34 +11,6 @@ # Svelte Material UI - List | ||
# Demo | ||
# Examples and Usage Information | ||
[See it in action.](https://sveltematerialui.com/demo/list) | ||
https://sveltematerialui.com/demo/list | ||
[See the demo code.](/site/src/routes/demo/list/) | ||
# 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 | ||
<List> | ||
{#each fruits as fruit} | ||
<Item> | ||
<Text>{fruit}</Text> | ||
</Item> | ||
{/each} | ||
</List> | ||
<script> | ||
import List, { Item, Text } from '@smui/list'; | ||
let fruits = ['Apple', 'Orange', 'Banana', 'Mango']; | ||
</script> | ||
``` | ||
# Exports | ||
todo... | ||
# More Information | ||
@@ -45,0 +17,0 @@ |
@@ -1,7 +0,7 @@ | ||
import { classAdderBuilder } from '@smui/common/internal.js'; | ||
import Span from '@smui/common/Span.svelte'; | ||
import { classAdderBuilder } from '@smui/common/internal'; | ||
import { Span } from '@smui/common/elements'; | ||
export default classAdderBuilder({ | ||
class: 'mdc-deprecated-list-item__secondary-text', | ||
component: Span, | ||
class: 'mdc-deprecated-list-item__secondary-text', | ||
component: Span, | ||
}); | ||
//# sourceMappingURL=SecondaryText.js.map |
import './_index.scss'; | ||
export * from './index.js'; | ||
export { default } from './index.js'; | ||
export * from './index'; | ||
export { default } from './index'; | ||
//# sourceMappingURL=styled.js.map |
@@ -1,7 +0,7 @@ | ||
import { classAdderBuilder } from '@smui/common/internal.js'; | ||
import H3 from '@smui/common/H3.svelte'; | ||
import { classAdderBuilder } from '@smui/common/internal'; | ||
import { H3 } from '@smui/common/elements'; | ||
export default classAdderBuilder({ | ||
class: 'mdc-deprecated-list-group__subheader', | ||
component: H3, | ||
class: 'mdc-deprecated-list-group__subheader', | ||
component: H3, | ||
}); | ||
//# sourceMappingURL=Subheader.js.map |
10
Text.js
@@ -1,7 +0,7 @@ | ||
import { classAdderBuilder } from '@smui/common/internal.js'; | ||
import Span from '@smui/common/Span.svelte'; | ||
import { classAdderBuilder } from '@smui/common/internal'; | ||
import { Span } from '@smui/common/elements'; | ||
export default classAdderBuilder({ | ||
class: 'mdc-deprecated-list-item__text', | ||
component: Span, | ||
class: 'mdc-deprecated-list-item__text', | ||
component: Span, | ||
}); | ||
//# sourceMappingURL=Text.js.map |
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
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
184110
71
3514
4
3
20
+ Added@smui/common@5.0.1(transitive)
+ Added@smui/ripple@5.0.1(transitive)
+ Added@tsconfig/svelte@2.0.1(transitive)
+ Addedanymatch@3.1.3(transitive)
+ Addedbinary-extensions@2.3.0(transitive)
+ Addedbraces@3.0.3(transitive)
+ Addedchokidar@3.6.0(transitive)
+ Addeddedent-js@1.0.1(transitive)
+ Addedfill-range@7.1.1(transitive)
+ Addedfsevents@2.3.3(transitive)
+ Addedglob-parent@5.1.2(transitive)
+ Addedis-binary-path@2.1.0(transitive)
+ Addedis-extglob@2.1.1(transitive)
+ Addedis-glob@4.0.3(transitive)
+ Addedis-number@7.0.0(transitive)
+ Addedlower-case@2.0.2(transitive)
+ Addedno-case@3.0.4(transitive)
+ Addednormalize-path@3.0.0(transitive)
+ Addedpascal-case@3.1.2(transitive)
+ Addedpicomatch@2.3.1(transitive)
+ Addedreaddirp@3.6.0(transitive)
+ Addedsass@1.39.2(transitive)
+ Addedsvelte2tsx@0.4.14(transitive)
+ Addedto-regex-range@5.0.1(transitive)
+ Addedtypescript@4.9.5(transitive)
- Removed@smui/common@4.2.0(transitive)
- Removed@smui/ripple@4.2.0(transitive)
Updated@smui/common@^5.0.0-beta.0
Updated@smui/ripple@^5.0.0-beta.0