smcgateway-sv 0.4.1 → 0.4.2
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/README.md +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,8 @@ import InputDebounced from "./InputDebounced.svelte";
|
|
|
9
9
|
import InputIdentUri from "./InputIdentUri.svelte";
|
|
10
10
|
import LoginForm from "./LoginForm.svelte";
|
|
11
11
|
import { recording, type Recording } from "./recording.svelte.js";
|
|
12
|
+
import AudioTimeLinePlayer from "./AudioTimeLinePlayer.svelte";
|
|
12
13
|
import VoicePlayer from "./VoicePlayer.svelte";
|
|
13
14
|
import csv from "./csv.js";
|
|
14
|
-
export { auth, gtime, geofence, device, ghistory, InputDate, InputDatetime, InputDebounced, InputIdentUri, LoginForm, recording, VoicePlayer, csv, };
|
|
15
|
+
export { auth, gtime, geofence, device, ghistory, InputDate, InputDatetime, InputDebounced, InputIdentUri, LoginForm, recording, AudioTimeLinePlayer, VoicePlayer, csv, };
|
|
15
16
|
export type { User, GeoFence, Device, Log, State, Recording };
|
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ import InputDebounced from "./InputDebounced.svelte";
|
|
|
10
10
|
import InputIdentUri from "./InputIdentUri.svelte";
|
|
11
11
|
import LoginForm from "./LoginForm.svelte";
|
|
12
12
|
import { recording } from "./recording.svelte.js";
|
|
13
|
+
import AudioTimeLinePlayer from "./AudioTimeLinePlayer.svelte";
|
|
13
14
|
import VoicePlayer from "./VoicePlayer.svelte";
|
|
14
15
|
import csv from "./csv.js";
|
|
15
|
-
export { auth, gtime, geofence, device, ghistory, InputDate, InputDatetime, InputDebounced, InputIdentUri, LoginForm, recording, VoicePlayer, csv, };
|
|
16
|
+
export { auth, gtime, geofence, device, ghistory, InputDate, InputDatetime, InputDebounced, InputIdentUri, LoginForm, recording, AudioTimeLinePlayer, VoicePlayer, csv, };
|