@yatoday/astro-ui 0.6.11 → 0.6.13
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/astro.d.ts +6 -6
- package/astro.js +4 -4
- package/components/{Footer/Footer.astro → WidgetFooter/WidgetFooter.astro} +2 -2
- package/components/WidgetFooter/WidgetFooter.svelte +3 -0
- package/components/{Footer → WidgetFooter}/types.ts +1 -1
- package/components/{Navbar/Navbar.astro → WidgetNavbar/WidgetNavbar.astro} +2 -2
- package/components/{Navbar → WidgetNavbar}/types.ts +1 -1
- package/package.json +1 -1
- package/svelte.d.ts +6 -6
- package/svelte.js +4 -4
- package/components/Footer/Footer.svelte +0 -3
- /package/components/{Navbar → WidgetNavbar}/ToggleMenu.astro +0 -0
- /package/components/{Navbar/Navbar.svelte → WidgetNavbar/WidgetNavbar.svelte} +0 -0
package/astro.d.ts
CHANGED
|
@@ -13,14 +13,12 @@ import type { Card4Props as YtCard4Props } from './components/Card4/types'
|
|
|
13
13
|
import type { Card5Props as YtCard5Props } from './components/Card5/types'
|
|
14
14
|
import type { ConditionalWrapperProps as YtConditionalWrapperProps } from './components/ConditionalWrapper/types'
|
|
15
15
|
import type { DarkModeProps as YtDarkModeProps } from './components/DarkMode/types'
|
|
16
|
-
import type { FooterProps as YtFooterProps } from './components/Footer/types'
|
|
17
16
|
import type { HeadlineProps as YtHeadlineProps } from './components/Headline/types'
|
|
18
17
|
import type { HeroSectionProps as YtHeroSectionProps } from './components/HeroSection/types'
|
|
19
18
|
import type { ImageProps as YtImageProps } from './components/Image/types'
|
|
20
19
|
import type { ItemGrid0Props as YtItemGrid0Props } from './components/ItemGrid0/types'
|
|
21
20
|
import type { LayoutProps as YtLayoutProps } from './components/Layout/types'
|
|
22
21
|
import type { MetadataProps as YtMetadataProps } from './components/Metadata/types'
|
|
23
|
-
import type { NavbarProps as YtNavbarProps } from './components/Navbar/types'
|
|
24
22
|
import type { QuantitySwitchProps as YtQuantitySwitchProps } from './components/QuantitySwitch/types'
|
|
25
23
|
import type { SiteVerificationProps as YtSiteVerificationProps } from './components/SiteVerification/types'
|
|
26
24
|
import type { Stats0Props as YtStats0Props } from './components/Stats0/types'
|
|
@@ -33,10 +31,12 @@ import type { WidgetContentProps as YtWidgetContentProps } from './components/Wi
|
|
|
33
31
|
import type { WidgetFaq1Props as YtWidgetFaq1Props } from './components/WidgetFaq1/types'
|
|
34
32
|
import type { WidgetFeatures0Props as YtWidgetFeatures0Props } from './components/WidgetFeatures0/types'
|
|
35
33
|
import type { WidgetFeaturesCardProps as YtWidgetFeaturesCardProps } from './components/WidgetFeaturesCard/types'
|
|
34
|
+
import type { WidgetFooterProps as YtWidgetFooterProps } from './components/WidgetFooter/types'
|
|
36
35
|
import type { WidgetHero0Props as YtWidgetHero0Props } from './components/WidgetHero0/types'
|
|
37
36
|
import type { WidgetHero1Props as YtWidgetHero1Props } from './components/WidgetHero1/types'
|
|
38
37
|
import type { WidgetHero2Props as YtWidgetHero2Props } from './components/WidgetHero2/types'
|
|
39
38
|
import type { WidgetHeroSliderProps as YtWidgetHeroSliderProps } from './components/WidgetHeroSlider/types'
|
|
39
|
+
import type { WidgetNavbarProps as YtWidgetNavbarProps } from './components/WidgetNavbar/types'
|
|
40
40
|
import type { WidgetStatsProps as YtWidgetStatsProps } from './components/WidgetStats/types'
|
|
41
41
|
import type { WidgetSteps1Props as YtWidgetSteps1Props } from './components/WidgetSteps1/types'
|
|
42
42
|
import type { WidgetStepsTimelineProps as YtWidgetStepsTimelineProps } from './components/WidgetStepsTimeline/types'
|
|
@@ -61,14 +61,12 @@ declare module '@yatoday/astro-ui/astro' {
|
|
|
61
61
|
export function Card5(_props: YtCard5Props): any
|
|
62
62
|
export function ConditionalWrapper(_props: YtConditionalWrapperProps): any
|
|
63
63
|
export function DarkMode(_props: YtDarkModeProps): any
|
|
64
|
-
export function Footer(_props: YtFooterProps): any
|
|
65
64
|
export function Headline(_props: YtHeadlineProps): any
|
|
66
65
|
export function HeroSection(_props: YtHeroSectionProps): any
|
|
67
66
|
export function Image(_props: YtImageProps): any
|
|
68
67
|
export function ItemGrid0(_props: YtItemGrid0Props): any
|
|
69
68
|
export function Layout(_props: YtLayoutProps): any
|
|
70
69
|
export function Metadata(_props: YtMetadataProps): any
|
|
71
|
-
export function Navbar(_props: YtNavbarProps): any
|
|
72
70
|
export function QuantitySwitch(_props: YtQuantitySwitchProps): any
|
|
73
71
|
export function SiteVerification(_props: YtSiteVerificationProps): any
|
|
74
72
|
export function Stats0(_props: YtStats0Props): any
|
|
@@ -81,10 +79,12 @@ declare module '@yatoday/astro-ui/astro' {
|
|
|
81
79
|
export function WidgetFaq1(_props: YtWidgetFaq1Props): any
|
|
82
80
|
export function WidgetFeatures0(_props: YtWidgetFeatures0Props): any
|
|
83
81
|
export function WidgetFeaturesCard(_props: YtWidgetFeaturesCardProps): any
|
|
82
|
+
export function WidgetFooter(_props: YtWidgetFooterProps): any
|
|
84
83
|
export function WidgetHero0(_props: YtWidgetHero0Props): any
|
|
85
84
|
export function WidgetHero1(_props: YtWidgetHero1Props): any
|
|
86
85
|
export function WidgetHero2(_props: YtWidgetHero2Props): any
|
|
87
86
|
export function WidgetHeroSlider(_props: YtWidgetHeroSliderProps): any
|
|
87
|
+
export function WidgetNavbar(_props: YtWidgetNavbarProps): any
|
|
88
88
|
export function WidgetStats(_props: YtWidgetStatsProps): any
|
|
89
89
|
export function WidgetSteps1(_props: YtWidgetSteps1Props): any
|
|
90
90
|
export function WidgetStepsTimeline(_props: YtWidgetStepsTimelineProps): any
|
|
@@ -108,14 +108,12 @@ declare module '@yatoday/astro-ui/astro' {
|
|
|
108
108
|
export type Card5Props = YtCard5Props
|
|
109
109
|
export type ConditionalWrapperProps = YtConditionalWrapperProps
|
|
110
110
|
export type DarkModeProps = YtDarkModeProps
|
|
111
|
-
export type FooterProps = YtFooterProps
|
|
112
111
|
export type HeadlineProps = YtHeadlineProps
|
|
113
112
|
export type HeroSectionProps = YtHeroSectionProps
|
|
114
113
|
export type ImageProps = YtImageProps
|
|
115
114
|
export type ItemGrid0Props = YtItemGrid0Props
|
|
116
115
|
export type LayoutProps = YtLayoutProps
|
|
117
116
|
export type MetadataProps = YtMetadataProps
|
|
118
|
-
export type NavbarProps = YtNavbarProps
|
|
119
117
|
export type QuantitySwitchProps = YtQuantitySwitchProps
|
|
120
118
|
export type SiteVerificationProps = YtSiteVerificationProps
|
|
121
119
|
export type Stats0Props = YtStats0Props
|
|
@@ -128,10 +126,12 @@ declare module '@yatoday/astro-ui/astro' {
|
|
|
128
126
|
export type WidgetFaq1Props = YtWidgetFaq1Props
|
|
129
127
|
export type WidgetFeatures0Props = YtWidgetFeatures0Props
|
|
130
128
|
export type WidgetFeaturesCardProps = YtWidgetFeaturesCardProps
|
|
129
|
+
export type WidgetFooterProps = YtWidgetFooterProps
|
|
131
130
|
export type WidgetHero0Props = YtWidgetHero0Props
|
|
132
131
|
export type WidgetHero1Props = YtWidgetHero1Props
|
|
133
132
|
export type WidgetHero2Props = YtWidgetHero2Props
|
|
134
133
|
export type WidgetHeroSliderProps = YtWidgetHeroSliderProps
|
|
134
|
+
export type WidgetNavbarProps = YtWidgetNavbarProps
|
|
135
135
|
export type WidgetStatsProps = YtWidgetStatsProps
|
|
136
136
|
export type WidgetSteps1Props = YtWidgetSteps1Props
|
|
137
137
|
export type WidgetStepsTimelineProps = YtWidgetStepsTimelineProps
|
package/astro.js
CHANGED
|
@@ -13,14 +13,12 @@ import Card4Component from './components/Card4/Card4.astro'
|
|
|
13
13
|
import Card5Component from './components/Card5/Card5.astro'
|
|
14
14
|
import ConditionalWrapperComponent from './components/ConditionalWrapper/ConditionalWrapper.astro'
|
|
15
15
|
import DarkModeComponent from './components/DarkMode/DarkMode.astro'
|
|
16
|
-
import FooterComponent from './components/Footer/Footer.astro'
|
|
17
16
|
import HeadlineComponent from './components/Headline/Headline.astro'
|
|
18
17
|
import HeroSectionComponent from './components/HeroSection/HeroSection.astro'
|
|
19
18
|
import ImageComponent from './components/Image/Image.astro'
|
|
20
19
|
import ItemGrid0Component from './components/ItemGrid0/ItemGrid0.astro'
|
|
21
20
|
import LayoutComponent from './components/Layout/Layout.astro'
|
|
22
21
|
import MetadataComponent from './components/Metadata/Metadata.astro'
|
|
23
|
-
import NavbarComponent from './components/Navbar/Navbar.astro'
|
|
24
22
|
import QuantitySwitchComponent from './components/QuantitySwitch/QuantitySwitch.astro'
|
|
25
23
|
import SiteVerificationComponent from './components/SiteVerification/SiteVerification.astro'
|
|
26
24
|
import Stats0Component from './components/Stats0/Stats0.astro'
|
|
@@ -33,10 +31,12 @@ import WidgetContentComponent from './components/WidgetContent/WidgetContent.ast
|
|
|
33
31
|
import WidgetFaq1Component from './components/WidgetFaq1/WidgetFaq1.astro'
|
|
34
32
|
import WidgetFeatures0Component from './components/WidgetFeatures0/WidgetFeatures0.astro'
|
|
35
33
|
import WidgetFeaturesCardComponent from './components/WidgetFeaturesCard/WidgetFeaturesCard.astro'
|
|
34
|
+
import WidgetFooterComponent from './components/WidgetFooter/WidgetFooter.astro'
|
|
36
35
|
import WidgetHero0Component from './components/WidgetHero0/WidgetHero0.astro'
|
|
37
36
|
import WidgetHero1Component from './components/WidgetHero1/WidgetHero1.astro'
|
|
38
37
|
import WidgetHero2Component from './components/WidgetHero2/WidgetHero2.astro'
|
|
39
38
|
import WidgetHeroSliderComponent from './components/WidgetHeroSlider/WidgetHeroSlider.astro'
|
|
39
|
+
import WidgetNavbarComponent from './components/WidgetNavbar/WidgetNavbar.astro'
|
|
40
40
|
import WidgetStatsComponent from './components/WidgetStats/WidgetStats.astro'
|
|
41
41
|
import WidgetSteps1Component from './components/WidgetSteps1/WidgetSteps1.astro'
|
|
42
42
|
import WidgetStepsTimelineComponent from './components/WidgetStepsTimeline/WidgetStepsTimeline.astro'
|
|
@@ -60,14 +60,12 @@ export const Card4 = Card4Component
|
|
|
60
60
|
export const Card5 = Card5Component
|
|
61
61
|
export const ConditionalWrapper = ConditionalWrapperComponent
|
|
62
62
|
export const DarkMode = DarkModeComponent
|
|
63
|
-
export const Footer = FooterComponent
|
|
64
63
|
export const Headline = HeadlineComponent
|
|
65
64
|
export const HeroSection = HeroSectionComponent
|
|
66
65
|
export const Image = ImageComponent
|
|
67
66
|
export const ItemGrid0 = ItemGrid0Component
|
|
68
67
|
export const Layout = LayoutComponent
|
|
69
68
|
export const Metadata = MetadataComponent
|
|
70
|
-
export const Navbar = NavbarComponent
|
|
71
69
|
export const QuantitySwitch = QuantitySwitchComponent
|
|
72
70
|
export const SiteVerification = SiteVerificationComponent
|
|
73
71
|
export const Stats0 = Stats0Component
|
|
@@ -80,10 +78,12 @@ export const WidgetContent = WidgetContentComponent
|
|
|
80
78
|
export const WidgetFaq1 = WidgetFaq1Component
|
|
81
79
|
export const WidgetFeatures0 = WidgetFeatures0Component
|
|
82
80
|
export const WidgetFeaturesCard = WidgetFeaturesCardComponent
|
|
81
|
+
export const WidgetFooter = WidgetFooterComponent
|
|
83
82
|
export const WidgetHero0 = WidgetHero0Component
|
|
84
83
|
export const WidgetHero1 = WidgetHero1Component
|
|
85
84
|
export const WidgetHero2 = WidgetHero2Component
|
|
86
85
|
export const WidgetHeroSlider = WidgetHeroSliderComponent
|
|
86
|
+
export const WidgetNavbar = WidgetNavbarComponent
|
|
87
87
|
export const WidgetStats = WidgetStatsComponent
|
|
88
88
|
export const WidgetSteps1 = WidgetSteps1Component
|
|
89
89
|
export const WidgetStepsTimeline = WidgetStepsTimelineComponent
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
import type {
|
|
2
|
+
import type { WidgetFooterProps as Props } from './types';
|
|
3
3
|
import { Icon } from 'astro-icon/components';
|
|
4
4
|
import { SITE } from 'vendor:config';
|
|
5
5
|
import WidgetWrapper from '../WidgetWrapper/WidgetWrapper.astro';
|
|
@@ -29,7 +29,7 @@ const {
|
|
|
29
29
|
<div class="mb-2">
|
|
30
30
|
<!-- SLOT: logo -->
|
|
31
31
|
<slot name="logo">
|
|
32
|
-
<a class="inline-block font-medium text-xl" href="/">{SITE?.name}</a>
|
|
32
|
+
<a class="inline-block font-medium text-xl" href="/">{SITE?.name || 'Logo'}</a>
|
|
33
33
|
</slot>
|
|
34
34
|
</div>
|
|
35
35
|
<div class="text-sm text-muted-foreground flex gap-1">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
import type {
|
|
2
|
+
import type { WidgetNavbarProps as Props } from './types';
|
|
3
3
|
|
|
4
4
|
import { SITE } from 'vendor:config';
|
|
5
5
|
import { Icon } from 'astro-icon/components';
|
|
@@ -64,7 +64,7 @@ const currentPath = `/${trimSlash(new URL(Astro.url).pathname)}`;
|
|
|
64
64
|
<div class:list={[{ 'mr-auto rtl:mr-0 rtl:ml-auto': position === 'right' }, 'flex justify-between items-center']}>
|
|
65
65
|
<!-- Logo -->
|
|
66
66
|
<slot name="logo">
|
|
67
|
-
<span>{SITE.name}</span>
|
|
67
|
+
<span>{SITE.name || 'Logo'}</span>
|
|
68
68
|
</slot>
|
|
69
69
|
<div class="flex items-center md:hidden">
|
|
70
70
|
<slot name="toggle-menu">
|
package/package.json
CHANGED
package/svelte.d.ts
CHANGED
|
@@ -14,14 +14,12 @@ import type { SvelteCard4Props as YtSvelteCard4Props } from './components/Card4/
|
|
|
14
14
|
import type { SvelteCard5Props as YtSvelteCard5Props } from './components/Card5/types'
|
|
15
15
|
import type { SvelteConditionalWrapperProps as YtSvelteConditionalWrapperProps } from './components/ConditionalWrapper/types'
|
|
16
16
|
import type { SvelteDarkModeProps as YtSvelteDarkModeProps } from './components/DarkMode/types'
|
|
17
|
-
import type { SvelteFooterProps as YtSvelteFooterProps } from './components/Footer/types'
|
|
18
17
|
import type { SvelteHeadlineProps as YtSvelteHeadlineProps } from './components/Headline/types'
|
|
19
18
|
import type { SvelteHeroSectionProps as YtSvelteHeroSectionProps } from './components/HeroSection/types'
|
|
20
19
|
import type { SvelteImageProps as YtSvelteImageProps } from './components/Image/types'
|
|
21
20
|
import type { SvelteItemGrid0Props as YtSvelteItemGrid0Props } from './components/ItemGrid0/types'
|
|
22
21
|
import type { SvelteLayoutProps as YtSvelteLayoutProps } from './components/Layout/types'
|
|
23
22
|
import type { SvelteMetadataProps as YtSvelteMetadataProps } from './components/Metadata/types'
|
|
24
|
-
import type { SvelteNavbarProps as YtSvelteNavbarProps } from './components/Navbar/types'
|
|
25
23
|
import type { SvelteQuantitySwitchProps as YtSvelteQuantitySwitchProps } from './components/QuantitySwitch/types'
|
|
26
24
|
import type { SvelteSiteVerificationProps as YtSvelteSiteVerificationProps } from './components/SiteVerification/types'
|
|
27
25
|
import type { SvelteStats0Props as YtSvelteStats0Props } from './components/Stats0/types'
|
|
@@ -34,10 +32,12 @@ import type { SvelteWidgetContentProps as YtSvelteWidgetContentProps } from './c
|
|
|
34
32
|
import type { SvelteWidgetFaq1Props as YtSvelteWidgetFaq1Props } from './components/WidgetFaq1/types'
|
|
35
33
|
import type { SvelteWidgetFeatures0Props as YtSvelteWidgetFeatures0Props } from './components/WidgetFeatures0/types'
|
|
36
34
|
import type { SvelteWidgetFeaturesCardProps as YtSvelteWidgetFeaturesCardProps } from './components/WidgetFeaturesCard/types'
|
|
35
|
+
import type { SvelteWidgetFooterProps as YtSvelteWidgetFooterProps } from './components/WidgetFooter/types'
|
|
37
36
|
import type { SvelteWidgetHero0Props as YtSvelteWidgetHero0Props } from './components/WidgetHero0/types'
|
|
38
37
|
import type { SvelteWidgetHero1Props as YtSvelteWidgetHero1Props } from './components/WidgetHero1/types'
|
|
39
38
|
import type { SvelteWidgetHero2Props as YtSvelteWidgetHero2Props } from './components/WidgetHero2/types'
|
|
40
39
|
import type { SvelteWidgetHeroSliderProps as YtSvelteWidgetHeroSliderProps } from './components/WidgetHeroSlider/types'
|
|
40
|
+
import type { SvelteWidgetNavbarProps as YtSvelteWidgetNavbarProps } from './components/WidgetNavbar/types'
|
|
41
41
|
import type { SvelteWidgetStatsProps as YtSvelteWidgetStatsProps } from './components/WidgetStats/types'
|
|
42
42
|
import type { SvelteWidgetSteps1Props as YtSvelteWidgetSteps1Props } from './components/WidgetSteps1/types'
|
|
43
43
|
import type { SvelteWidgetStepsTimelineProps as YtSvelteWidgetStepsTimelineProps } from './components/WidgetStepsTimeline/types'
|
|
@@ -62,14 +62,12 @@ declare module '@yatoday/astro-ui/svelte' {
|
|
|
62
62
|
export const Card5: Component<YtSvelteCard5Props>
|
|
63
63
|
export const ConditionalWrapper: Component<YtSvelteConditionalWrapperProps>
|
|
64
64
|
export const DarkMode: Component<YtSvelteDarkModeProps>
|
|
65
|
-
export const Footer: Component<YtSvelteFooterProps>
|
|
66
65
|
export const Headline: Component<YtSvelteHeadlineProps>
|
|
67
66
|
export const HeroSection: Component<YtSvelteHeroSectionProps>
|
|
68
67
|
export const Image: Component<YtSvelteImageProps>
|
|
69
68
|
export const ItemGrid0: Component<YtSvelteItemGrid0Props>
|
|
70
69
|
export const Layout: Component<YtSvelteLayoutProps>
|
|
71
70
|
export const Metadata: Component<YtSvelteMetadataProps>
|
|
72
|
-
export const Navbar: Component<YtSvelteNavbarProps>
|
|
73
71
|
export const QuantitySwitch: Component<YtSvelteQuantitySwitchProps>
|
|
74
72
|
export const SiteVerification: Component<YtSvelteSiteVerificationProps>
|
|
75
73
|
export const Stats0: Component<YtSvelteStats0Props>
|
|
@@ -82,10 +80,12 @@ declare module '@yatoday/astro-ui/svelte' {
|
|
|
82
80
|
export const WidgetFaq1: Component<YtSvelteWidgetFaq1Props>
|
|
83
81
|
export const WidgetFeatures0: Component<YtSvelteWidgetFeatures0Props>
|
|
84
82
|
export const WidgetFeaturesCard: Component<YtSvelteWidgetFeaturesCardProps>
|
|
83
|
+
export const WidgetFooter: Component<YtSvelteWidgetFooterProps>
|
|
85
84
|
export const WidgetHero0: Component<YtSvelteWidgetHero0Props>
|
|
86
85
|
export const WidgetHero1: Component<YtSvelteWidgetHero1Props>
|
|
87
86
|
export const WidgetHero2: Component<YtSvelteWidgetHero2Props>
|
|
88
87
|
export const WidgetHeroSlider: Component<YtSvelteWidgetHeroSliderProps>
|
|
88
|
+
export const WidgetNavbar: Component<YtSvelteWidgetNavbarProps>
|
|
89
89
|
export const WidgetStats: Component<YtSvelteWidgetStatsProps>
|
|
90
90
|
export const WidgetSteps1: Component<YtSvelteWidgetSteps1Props>
|
|
91
91
|
export const WidgetStepsTimeline: Component<YtSvelteWidgetStepsTimelineProps>
|
|
@@ -109,14 +109,12 @@ declare module '@yatoday/astro-ui/svelte' {
|
|
|
109
109
|
export type Card5Props = YtSvelteCard5Props
|
|
110
110
|
export type ConditionalWrapperProps = YtSvelteConditionalWrapperProps
|
|
111
111
|
export type DarkModeProps = YtSvelteDarkModeProps
|
|
112
|
-
export type FooterProps = YtSvelteFooterProps
|
|
113
112
|
export type HeadlineProps = YtSvelteHeadlineProps
|
|
114
113
|
export type HeroSectionProps = YtSvelteHeroSectionProps
|
|
115
114
|
export type ImageProps = YtSvelteImageProps
|
|
116
115
|
export type ItemGrid0Props = YtSvelteItemGrid0Props
|
|
117
116
|
export type LayoutProps = YtSvelteLayoutProps
|
|
118
117
|
export type MetadataProps = YtSvelteMetadataProps
|
|
119
|
-
export type NavbarProps = YtSvelteNavbarProps
|
|
120
118
|
export type QuantitySwitchProps = YtSvelteQuantitySwitchProps
|
|
121
119
|
export type SiteVerificationProps = YtSvelteSiteVerificationProps
|
|
122
120
|
export type Stats0Props = YtSvelteStats0Props
|
|
@@ -129,10 +127,12 @@ declare module '@yatoday/astro-ui/svelte' {
|
|
|
129
127
|
export type WidgetFaq1Props = YtSvelteWidgetFaq1Props
|
|
130
128
|
export type WidgetFeatures0Props = YtSvelteWidgetFeatures0Props
|
|
131
129
|
export type WidgetFeaturesCardProps = YtSvelteWidgetFeaturesCardProps
|
|
130
|
+
export type WidgetFooterProps = YtSvelteWidgetFooterProps
|
|
132
131
|
export type WidgetHero0Props = YtSvelteWidgetHero0Props
|
|
133
132
|
export type WidgetHero1Props = YtSvelteWidgetHero1Props
|
|
134
133
|
export type WidgetHero2Props = YtSvelteWidgetHero2Props
|
|
135
134
|
export type WidgetHeroSliderProps = YtSvelteWidgetHeroSliderProps
|
|
135
|
+
export type WidgetNavbarProps = YtSvelteWidgetNavbarProps
|
|
136
136
|
export type WidgetStatsProps = YtSvelteWidgetStatsProps
|
|
137
137
|
export type WidgetSteps1Props = YtSvelteWidgetSteps1Props
|
|
138
138
|
export type WidgetStepsTimelineProps = YtSvelteWidgetStepsTimelineProps
|
package/svelte.js
CHANGED
|
@@ -13,14 +13,12 @@ import Card4Component from './components/Card4/Card4.svelte'
|
|
|
13
13
|
import Card5Component from './components/Card5/Card5.svelte'
|
|
14
14
|
import ConditionalWrapperComponent from './components/ConditionalWrapper/ConditionalWrapper.svelte'
|
|
15
15
|
import DarkModeComponent from './components/DarkMode/DarkMode.svelte'
|
|
16
|
-
import FooterComponent from './components/Footer/Footer.svelte'
|
|
17
16
|
import HeadlineComponent from './components/Headline/Headline.svelte'
|
|
18
17
|
import HeroSectionComponent from './components/HeroSection/HeroSection.svelte'
|
|
19
18
|
import ImageComponent from './components/Image/Image.svelte'
|
|
20
19
|
import ItemGrid0Component from './components/ItemGrid0/ItemGrid0.svelte'
|
|
21
20
|
import LayoutComponent from './components/Layout/Layout.svelte'
|
|
22
21
|
import MetadataComponent from './components/Metadata/Metadata.svelte'
|
|
23
|
-
import NavbarComponent from './components/Navbar/Navbar.svelte'
|
|
24
22
|
import QuantitySwitchComponent from './components/QuantitySwitch/QuantitySwitch.svelte'
|
|
25
23
|
import SiteVerificationComponent from './components/SiteVerification/SiteVerification.svelte'
|
|
26
24
|
import Stats0Component from './components/Stats0/Stats0.svelte'
|
|
@@ -33,10 +31,12 @@ import WidgetContentComponent from './components/WidgetContent/WidgetContent.sve
|
|
|
33
31
|
import WidgetFaq1Component from './components/WidgetFaq1/WidgetFaq1.svelte'
|
|
34
32
|
import WidgetFeatures0Component from './components/WidgetFeatures0/WidgetFeatures0.svelte'
|
|
35
33
|
import WidgetFeaturesCardComponent from './components/WidgetFeaturesCard/WidgetFeaturesCard.svelte'
|
|
34
|
+
import WidgetFooterComponent from './components/WidgetFooter/WidgetFooter.svelte'
|
|
36
35
|
import WidgetHero0Component from './components/WidgetHero0/WidgetHero0.svelte'
|
|
37
36
|
import WidgetHero1Component from './components/WidgetHero1/WidgetHero1.svelte'
|
|
38
37
|
import WidgetHero2Component from './components/WidgetHero2/WidgetHero2.svelte'
|
|
39
38
|
import WidgetHeroSliderComponent from './components/WidgetHeroSlider/WidgetHeroSlider.svelte'
|
|
39
|
+
import WidgetNavbarComponent from './components/WidgetNavbar/WidgetNavbar.svelte'
|
|
40
40
|
import WidgetStatsComponent from './components/WidgetStats/WidgetStats.svelte'
|
|
41
41
|
import WidgetSteps1Component from './components/WidgetSteps1/WidgetSteps1.svelte'
|
|
42
42
|
import WidgetStepsTimelineComponent from './components/WidgetStepsTimeline/WidgetStepsTimeline.svelte'
|
|
@@ -60,14 +60,12 @@ export const Card4 = Card4Component
|
|
|
60
60
|
export const Card5 = Card5Component
|
|
61
61
|
export const ConditionalWrapper = ConditionalWrapperComponent
|
|
62
62
|
export const DarkMode = DarkModeComponent
|
|
63
|
-
export const Footer = FooterComponent
|
|
64
63
|
export const Headline = HeadlineComponent
|
|
65
64
|
export const HeroSection = HeroSectionComponent
|
|
66
65
|
export const Image = ImageComponent
|
|
67
66
|
export const ItemGrid0 = ItemGrid0Component
|
|
68
67
|
export const Layout = LayoutComponent
|
|
69
68
|
export const Metadata = MetadataComponent
|
|
70
|
-
export const Navbar = NavbarComponent
|
|
71
69
|
export const QuantitySwitch = QuantitySwitchComponent
|
|
72
70
|
export const SiteVerification = SiteVerificationComponent
|
|
73
71
|
export const Stats0 = Stats0Component
|
|
@@ -80,10 +78,12 @@ export const WidgetContent = WidgetContentComponent
|
|
|
80
78
|
export const WidgetFaq1 = WidgetFaq1Component
|
|
81
79
|
export const WidgetFeatures0 = WidgetFeatures0Component
|
|
82
80
|
export const WidgetFeaturesCard = WidgetFeaturesCardComponent
|
|
81
|
+
export const WidgetFooter = WidgetFooterComponent
|
|
83
82
|
export const WidgetHero0 = WidgetHero0Component
|
|
84
83
|
export const WidgetHero1 = WidgetHero1Component
|
|
85
84
|
export const WidgetHero2 = WidgetHero2Component
|
|
86
85
|
export const WidgetHeroSlider = WidgetHeroSliderComponent
|
|
86
|
+
export const WidgetNavbar = WidgetNavbarComponent
|
|
87
87
|
export const WidgetStats = WidgetStatsComponent
|
|
88
88
|
export const WidgetSteps1 = WidgetSteps1Component
|
|
89
89
|
export const WidgetStepsTimeline = WidgetStepsTimelineComponent
|
|
File without changes
|
|
File without changes
|