Skip to content

Commit 4d909d8

Browse files
committed
Remove type options, update dependencies, minor example UI fix
1 parent dbd97fd commit 4d909d8

File tree

5 files changed

+56
-55
lines changed

5 files changed

+56
-55
lines changed

example/Children.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
</button>
122122
<button
123123
class="bottom-right"
124-
class:active={position === 'bottom-rigth'}
124+
class:active={position === 'bottom-right'}
125125
id="bottom-right"
126126
on:click={setPosition}
127127
>

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface DefaultNotificationOptions {
1515
id?: string;
1616
text: string;
1717
position: Position;
18-
type?: 'success' | 'warning' | 'danger';
18+
type?: string;
1919
removeAfter?: number;
2020
}
2121

package-lock.json

+48-48
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232
"@rollup/plugin-commonjs": "^22.0.0",
3333
"@rollup/plugin-node-resolve": "^13.3.0",
3434
"autoprefixer": "^10.4.7",
35-
"cypress": "^9.6.1",
36-
"eslint": "^8.15.0",
35+
"cypress": "^9.7.0",
36+
"eslint": "^8.16.0",
3737
"eslint-config-airbnb-base": "^15.0.0",
3838
"eslint-plugin-cypress": "^2.12.1",
3939
"eslint-plugin-import": "^2.26.0",
4040
"eslint-plugin-svelte3": "^4.0.0",
4141
"npm-run-all": "^4.1.5",
42-
"postcss": "^8.4.13",
43-
"rollup": "^2.73.0",
42+
"postcss": "^8.4.14",
43+
"rollup": "^2.75.3",
4444
"rollup-plugin-css-only": "^3.1.0",
4545
"rollup-plugin-livereload": "^2.0.5",
4646
"rollup-plugin-svelte": "^7.1.0",

public/global.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ button.button:active {
237237
.show-custom {
238238
display: flex;
239239
align-items: center;
240+
padding-bottom: 10px;
240241
}
241242

242243
input[type="checkbox"] {
@@ -287,7 +288,7 @@ input[type="checkbox"]:checked + .toggle:after {
287288

288289
.additional-tools {
289290
overflow: hidden;
290-
padding: 10px 0;
291+
padding: 10px 0 0;
291292
margin: 0 0 15px;
292293
border-top: 1px solid rgba(255, 255, 255, 0.1);
293294
border-bottom: 1px solid rgba(255, 255, 255, 0.1);

0 commit comments

Comments
 (0)