@functionalcms/svelte-components 4.9.2 → 4.9.4
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/integrations/EasyTools.svelte +1 -1
- package/dist/components/layouts/TwoColumnsLayout.svelte +2 -2
- package/dist/components/layouts/TwoColumnsLayout.svelte.d.ts +2 -2
- package/dist/components/presentation/Logo.svelte +1 -1
- package/dist/components/presentation/Logo.svelte.d.ts +2 -3
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ import type { Snippet } from 'svelte';
|
|
|
2
2
|
interface TwoColumnLayoutProps {
|
|
3
3
|
leftRender: Snippet;
|
|
4
4
|
rightRender: Snippet;
|
|
5
|
-
leftCss
|
|
6
|
-
rightCss
|
|
5
|
+
leftCss?: string;
|
|
6
|
+
rightCss?: string;
|
|
7
7
|
}
|
|
8
8
|
declare const TwoColumnsLayout: import("svelte").Component<TwoColumnLayoutProps, {}, "">;
|
|
9
9
|
type TwoColumnsLayout = ReturnType<typeof TwoColumnsLayout>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
declare const Logo: import("svelte").Component<Partial<{
|
|
2
2
|
companyName: string;
|
|
3
3
|
logoUrl: string;
|
|
4
4
|
css: string;
|
|
5
|
-
}
|
|
6
|
-
declare const Logo: import("svelte").Component<Props, {}, "">;
|
|
5
|
+
}>, {}, "">;
|
|
7
6
|
type Logo = ReturnType<typeof Logo>;
|
|
8
7
|
export default Logo;
|