@getmicdrop/svelte-components 2.0.9 → 2.0.10
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/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ export { default as CustomImageDropzone } from "./components/pages/settings/tabs
|
|
|
75
75
|
export { default as ShowList } from "./components/pages/shows/ShowList.svelte";
|
|
76
76
|
export { default as TabContent } from "./components/pages/shows/TabContent.svelte";
|
|
77
77
|
export { default as TabNavigation } from "./components/pages/shows/TabNavigation.svelte";
|
|
78
|
+
export * from "./config.js";
|
|
78
79
|
export * from "./telemetry.js";
|
|
79
80
|
export * from "./constants/formOptions.js";
|
|
80
81
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -106,6 +106,6 @@ export { default as TabContent } from './components/pages/shows/TabContent.svelt
|
|
|
106
106
|
export { default as TabNavigation } from './components/pages/shows/TabNavigation.svelte';
|
|
107
107
|
|
|
108
108
|
// Lib exports (non-component)
|
|
109
|
-
export
|
|
109
|
+
export * from './config.js';
|
|
110
110
|
export * from './telemetry.js';
|
|
111
111
|
export * from './constants/formOptions.js';
|