@joyautomation/salt 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ThemeButton.svelte +1 -1
- package/dist/components/Toast.svelte +1 -1
- package/dist/components/Toggle.svelte +1 -1
- package/dist/components/icons/ChevronUpDown.svelte +1 -1
- package/dist/components/icons/Moon.svelte +1 -1
- package/dist/components/icons/PauseCircle.svelte +1 -1
- package/dist/components/icons/Pencil.svelte +1 -1
- package/dist/components/icons/Plus.svelte +1 -1
- package/dist/components/icons/Sun.svelte +1 -1
- package/dist/components/icons/Trash.svelte +1 -1
- package/dist/components/icons/WrenchScrewdriver.svelte +1 -1
- package/dist/components/icons/Xmark.svelte +1 -1
- package/dist/components/icons/index.d.ts +1 -0
- package/dist/components/icons/index.js +1 -0
- package/package.json +2 -2
- package/dist/stores/notifications.d.ts +0 -12
|
@@ -8,6 +8,7 @@ export { default as Moon } from './Moon.svelte';
|
|
|
8
8
|
export { default as PauseCircle } from './PauseCircle.svelte';
|
|
9
9
|
export { default as Pencil } from './Pencil.svelte';
|
|
10
10
|
export { default as PlayCircle } from './PlayCircle.svelte';
|
|
11
|
+
export { default as Plus } from './Plus.svelte';
|
|
11
12
|
export { default as Sun } from './Sun.svelte';
|
|
12
13
|
export { default as Trash } from './Trash.svelte';
|
|
13
14
|
export { default as WrenchScrewdriver } from './WrenchScrewdriver.svelte';
|
|
@@ -8,6 +8,7 @@ export { default as Moon } from './Moon.svelte';
|
|
|
8
8
|
export { default as PauseCircle } from './PauseCircle.svelte';
|
|
9
9
|
export { default as Pencil } from './Pencil.svelte';
|
|
10
10
|
export { default as PlayCircle } from './PlayCircle.svelte';
|
|
11
|
+
export { default as Plus } from './Plus.svelte';
|
|
11
12
|
export { default as Sun } from './Sun.svelte';
|
|
12
13
|
export { default as Trash } from './Trash.svelte';
|
|
13
14
|
export { default as WrenchScrewdriver } from './WrenchScrewdriver.svelte';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joyautomation/salt",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": [
|
|
6
6
|
"./dist/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"prettier": "^3.2.5",
|
|
38
38
|
"prettier-plugin-svelte": "^3.2.3",
|
|
39
39
|
"publint": "^0.1.9",
|
|
40
|
-
"svelte": "
|
|
40
|
+
"svelte": "5.0.0-next.244",
|
|
41
41
|
"svelte-check": "^3.6.0",
|
|
42
42
|
"tslib": "^2.4.1",
|
|
43
43
|
"typescript": "^5.4.5",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/// <reference types="svelte" />
|
|
2
|
-
export interface NotificationInput {
|
|
3
|
-
type: string;
|
|
4
|
-
message: string;
|
|
5
|
-
}
|
|
6
|
-
export interface Notification {
|
|
7
|
-
id: string;
|
|
8
|
-
type: string;
|
|
9
|
-
message: string;
|
|
10
|
-
}
|
|
11
|
-
export declare const notifications: import("svelte/store").Writable<Notification[]>;
|
|
12
|
-
export declare function addNotification(notification: NotificationInput): void;
|