Skip to content

Commit 7e02ff3

Browse files
committed
v0.3.0: header update and table component
1 parent f221272 commit 7e02ff3

26 files changed

+2237
-765
lines changed

.vscode/settings.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
"editor.unicodeHighlight.ambiguousCharacters": false,
44
"editor.unicodeHighlight.invisibleCharacters": false,
55
"editor.wordWrap": "on",
6-
"editor.quickSuggestions": true,
6+
"editor.quickSuggestions": {
7+
"comments": "on",
8+
"strings": "on",
9+
"other": "on"
10+
},
711
},
812
"markdownlint.config": {
913
"no-inline-html": false

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,11 @@ A few of the components are using their own stores. For example, if you want to
6161
```js
6262
<script>
6363
import { Button } from 'sveltekit-components'
64-
import { Notify } from 'sveltekit-components/stores/notification'
6564
</script>
6665

6766
<Button
6867
on:click={() => {
69-
Notify.show({
68+
notification.add({
7069
title: 'Example',
7170
description: 'This is an example',
7271
type: 'success'

0 commit comments

Comments
 (0)