svelte-bird
Advanced tools
Comparing version 0.0.21 to 1.0.0
@@ -1,14 +0,18 @@ | ||
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: Record<string, never>; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
slots: {}; | ||
}; | ||
export type DarkModeButtonProps = typeof __propDef.props; | ||
export type DarkModeButtonEvents = typeof __propDef.events; | ||
export type DarkModeButtonSlots = typeof __propDef.slots; | ||
export default class DarkModeButton extends SvelteComponent<DarkModeButtonProps, DarkModeButtonEvents, DarkModeButtonSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const DarkModeButton: $$__sveltets_2_IsomorphicComponent<Record<string, never>, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, string>; | ||
type DarkModeButton = InstanceType<typeof DarkModeButton>; | ||
export default DarkModeButton; |
@@ -1,19 +0,23 @@ | ||
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: { | ||
propTitle?: string | undefined; | ||
propIcon?: string | undefined; | ||
import type { Snippet } from 'svelte'; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: { | ||
default: {}; | ||
}; | ||
}; | ||
export type LinksProps = typeof __propDef.props; | ||
export type LinksEvents = typeof __propDef.events; | ||
export type LinksSlots = typeof __propDef.slots; | ||
export default class Links extends SvelteComponent<LinksProps, LinksEvents, LinksSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const Links: $$__sveltets_2_IsomorphicComponent<{ | ||
children?: Snippet; | ||
propTitle?: string; | ||
propIcon?: string; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "">; | ||
type Links = InstanceType<typeof Links>; | ||
export default Links; |
@@ -1,14 +0,18 @@ | ||
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: Record<string, never>; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
slots: {}; | ||
}; | ||
export type MobileMenuButtonProps = typeof __propDef.props; | ||
export type MobileMenuButtonEvents = typeof __propDef.events; | ||
export type MobileMenuButtonSlots = typeof __propDef.slots; | ||
export default class MobileMenuButton extends SvelteComponent<MobileMenuButtonProps, MobileMenuButtonEvents, MobileMenuButtonSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const MobileMenuButton: $$__sveltets_2_IsomorphicComponent<Record<string, never>, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, string>; | ||
type MobileMenuButton = InstanceType<typeof MobileMenuButton>; | ||
export default MobileMenuButton; |
@@ -1,21 +0,25 @@ | ||
import { SvelteComponent } from "svelte"; | ||
import type { typeNotificationsData } from '../types/typeNotificationsData.js'; | ||
declare const __propDef: { | ||
props: { | ||
propNewNotifications?: boolean | undefined; | ||
propTitle?: string | undefined; | ||
propData?: typeNotificationsData | undefined; | ||
propNotFoundMessage?: string | undefined; | ||
propIcon?: string | undefined; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: {}; | ||
}; | ||
export type NotificationsProps = typeof __propDef.props; | ||
export type NotificationsEvents = typeof __propDef.events; | ||
export type NotificationsSlots = typeof __propDef.slots; | ||
export default class Notifications extends SvelteComponent<NotificationsProps, NotificationsEvents, NotificationsSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const Notifications: $$__sveltets_2_IsomorphicComponent<{ | ||
propNewNotifications?: boolean; | ||
propTitle?: string; | ||
propData?: typeNotificationsData; | ||
propNotFoundMessage?: string; | ||
propIcon?: string; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "">; | ||
type Notifications = InstanceType<typeof Notifications>; | ||
export default Notifications; |
@@ -1,14 +0,18 @@ | ||
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: Record<string, never>; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
slots: {}; | ||
}; | ||
export type SearchProps = typeof __propDef.props; | ||
export type SearchEvents = typeof __propDef.events; | ||
export type SearchSlots = typeof __propDef.slots; | ||
export default class Search extends SvelteComponent<SearchProps, SearchEvents, SearchSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const Search: $$__sveltets_2_IsomorphicComponent<Record<string, never>, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, string>; | ||
type Search = InstanceType<typeof Search>; | ||
export default Search; |
@@ -1,23 +0,27 @@ | ||
import { SvelteComponent } from "svelte"; | ||
import type { typeSidebarData } from '../types/typeSidebarData.js'; | ||
declare const __propDef: { | ||
props: { | ||
propSidebarExpanded: boolean; | ||
propSidebarData: typeSidebarData<string>; | ||
propExpandAllMenus: boolean; | ||
propLogoImage: string | undefined; | ||
propLogoWidth: number | undefined; | ||
propLogoHref: string | undefined; | ||
propTitle: string | undefined; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: {}; | ||
}; | ||
export type SidebarProps = typeof __propDef.props; | ||
export type SidebarEvents = typeof __propDef.events; | ||
export type SidebarSlots = typeof __propDef.slots; | ||
export default class Sidebar extends SvelteComponent<SidebarProps, SidebarEvents, SidebarSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const Sidebar: $$__sveltets_2_IsomorphicComponent<{ | ||
propSidebarExpanded: boolean; | ||
propSidebarData: typeSidebarData<string>; | ||
propExpandAllMenus: boolean; | ||
propLogoImage?: string; | ||
propLogoWidth?: number; | ||
propLogoHref?: string; | ||
propTitle?: string; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "propSidebarExpanded">; | ||
type Sidebar = InstanceType<typeof Sidebar>; | ||
export default Sidebar; |
@@ -1,16 +0,20 @@ | ||
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: { | ||
propSidebarExpanded: boolean; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: {}; | ||
}; | ||
export type BottomProps = typeof __propDef.props; | ||
export type BottomEvents = typeof __propDef.events; | ||
export type BottomSlots = typeof __propDef.slots; | ||
export default class Bottom extends SvelteComponent<BottomProps, BottomEvents, BottomSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const Bottom: $$__sveltets_2_IsomorphicComponent<{ | ||
propSidebarExpanded: boolean; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "propSidebarExpanded">; | ||
type Bottom = InstanceType<typeof Bottom>; | ||
export default Bottom; |
@@ -1,14 +0,18 @@ | ||
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: Record<string, never>; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
slots: {}; | ||
}; | ||
export type CloseButtonProps = typeof __propDef.props; | ||
export type CloseButtonEvents = typeof __propDef.events; | ||
export type CloseButtonSlots = typeof __propDef.slots; | ||
export default class CloseButton extends SvelteComponent<CloseButtonProps, CloseButtonEvents, CloseButtonSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const CloseButton: $$__sveltets_2_IsomorphicComponent<Record<string, never>, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, string>; | ||
type CloseButton = InstanceType<typeof CloseButton>; | ||
export default CloseButton; |
@@ -1,21 +0,25 @@ | ||
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: { | ||
propLogo: string | undefined; | ||
propWidth: number | undefined; | ||
propTitle: string | undefined; | ||
propHref: string | undefined; | ||
import type { Snippet } from 'svelte'; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: { | ||
default: {}; | ||
}; | ||
}; | ||
export type LogoProps = typeof __propDef.props; | ||
export type LogoEvents = typeof __propDef.events; | ||
export type LogoSlots = typeof __propDef.slots; | ||
export default class Logo extends SvelteComponent<LogoProps, LogoEvents, LogoSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const Logo: $$__sveltets_2_IsomorphicComponent<{ | ||
children?: Snippet; | ||
propLogo?: string; | ||
propWidth?: number; | ||
propTitle?: string; | ||
propHref?: string; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "">; | ||
type Logo = InstanceType<typeof Logo>; | ||
export default Logo; |
@@ -1,18 +0,21 @@ | ||
import { SvelteComponent } from "svelte"; | ||
import type { typeMenuWithoutSubmenus } from '../../types/typeSidebarData.js'; | ||
declare const __propDef: { | ||
props: { | ||
propActiveMenu?: string | undefined; | ||
propData: typeMenuWithoutSubmenus<string>; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: {}; | ||
}; | ||
export type MenuItemWithoutSubmenusProps = typeof __propDef.props; | ||
export type MenuItemWithoutSubmenusEvents = typeof __propDef.events; | ||
export type MenuItemWithoutSubmenusSlots = typeof __propDef.slots; | ||
export default class MenuItemWithoutSubmenus extends SvelteComponent<MenuItemWithoutSubmenusProps, MenuItemWithoutSubmenusEvents, MenuItemWithoutSubmenusSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const MenuItemWithoutSubmenus: $$__sveltets_2_IsomorphicComponent<{ | ||
propData: typeMenuWithoutSubmenus<string>; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "">; | ||
type MenuItemWithoutSubmenus = InstanceType<typeof MenuItemWithoutSubmenus>; | ||
export default MenuItemWithoutSubmenus; |
@@ -1,21 +0,23 @@ | ||
import { SvelteComponent } from "svelte"; | ||
import type { typeMenuWithSubmenus } from '../../types/typeSidebarData.js'; | ||
declare const __propDef: { | ||
props: { | ||
propData: typeMenuWithSubmenus<string>; | ||
propActiveMenu?: string | undefined; | ||
propExpandedMenu?: string | undefined; | ||
propExpandAllMenus: boolean; | ||
propSidebarExpanded: boolean; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: {}; | ||
}; | ||
export type MenuItemWithSubmenusProps = typeof __propDef.props; | ||
export type MenuItemWithSubmenusEvents = typeof __propDef.events; | ||
export type MenuItemWithSubmenusSlots = typeof __propDef.slots; | ||
export default class MenuItemWithSubmenus extends SvelteComponent<MenuItemWithSubmenusProps, MenuItemWithSubmenusEvents, MenuItemWithSubmenusSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const MenuItemWithSubmenus: $$__sveltets_2_IsomorphicComponent<{ | ||
propData: typeMenuWithSubmenus<string>; | ||
propExpandAllMenus: boolean; | ||
propSidebarExpanded: boolean; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "propSidebarExpanded">; | ||
type MenuItemWithSubmenus = InstanceType<typeof MenuItemWithSubmenus>; | ||
export default MenuItemWithSubmenus; |
@@ -1,25 +0,29 @@ | ||
import { SvelteComponent } from "svelte"; | ||
import type { typeUserData } from '../types/typeUserData.js'; | ||
declare const __propDef: { | ||
props: { | ||
propButtonText?: string | undefined; | ||
propButtonLink?: string | undefined; | ||
propImage?: string | undefined; | ||
propTitle?: string | undefined; | ||
propInternalTitle?: string | undefined; | ||
propInternalSubtitle?: string | undefined; | ||
propUserMenuArray?: typeUserData | undefined; | ||
import type { Snippet } from 'svelte'; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: { | ||
default: {}; | ||
}; | ||
}; | ||
export type UserProps = typeof __propDef.props; | ||
export type UserEvents = typeof __propDef.events; | ||
export type UserSlots = typeof __propDef.slots; | ||
export default class User extends SvelteComponent<UserProps, UserEvents, UserSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const User: $$__sveltets_2_IsomorphicComponent<{ | ||
propButtonText?: string; | ||
propButtonLink?: string; | ||
propImage?: string; | ||
propTitle?: string; | ||
propInternalTitle?: string; | ||
propInternalSubtitle?: string; | ||
propUserMenuArray?: typeUserData; | ||
children?: Snippet; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "">; | ||
type User = InstanceType<typeof User>; | ||
export default User; |
export declare const functionSetMenuStates: <T>({ parActiveMenu, parExpandedMenu, }: { | ||
parActiveMenu: T; | ||
parExpandedMenu?: T | undefined; | ||
parExpandedMenu?: T; | ||
}) => void; |
@@ -1,7 +0,7 @@ | ||
import { functionReadActiveMenuStore, functionReadExpandedMenuStore } from '../stores/index.js'; | ||
import { functionReadStore } from './functionReadStore.js'; | ||
export const functionSetMenuStates = function ({ parActiveMenu, parExpandedMenu, }) { | ||
const storeActiveMenu = functionReadActiveMenuStore(); | ||
const storeExpandedMenu = functionReadExpandedMenuStore(); | ||
storeActiveMenu.set(parActiveMenu); | ||
storeExpandedMenu.set(parExpandedMenu ?? ''); | ||
const storeActiveMenu = functionReadStore('contextActiveMenu'); | ||
const storeExpandedMenu = functionReadStore('contextExpandedMenu'); | ||
storeActiveMenu.value = parActiveMenu; | ||
storeExpandedMenu.value = parExpandedMenu ?? ''; | ||
}; |
@@ -0,2 +1,3 @@ | ||
import { functionReadStore } from './functionReadStore.js'; | ||
import { functionSetMenuStates } from './functionSetMenuStates.js'; | ||
export { functionSetMenuStates }; | ||
export { functionReadStore, functionSetMenuStates }; |
@@ -0,2 +1,3 @@ | ||
import { functionReadStore } from './functionReadStore.js'; | ||
import { functionSetMenuStates } from './functionSetMenuStates.js'; | ||
export { functionSetMenuStates }; | ||
export { functionReadStore, functionSetMenuStates }; |
@@ -1,26 +0,30 @@ | ||
import { SvelteComponent } from "svelte"; | ||
import type { typeSidebarData } from './types/typeSidebarData.js'; | ||
declare const __propDef: { | ||
props: { | ||
propSidebarData: typeSidebarData<string>; | ||
propExpandAllMenus?: boolean | undefined; | ||
propLogoImage?: string | undefined; | ||
propLogoWidth?: number | undefined; | ||
propLogoHref?: string | undefined; | ||
propTitle?: string | undefined; | ||
import type { Snippet } from 'svelte'; | ||
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { | ||
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { | ||
$$bindings?: Bindings; | ||
} & Exports; | ||
(internal: unknown, props: Props & { | ||
$$events?: Events; | ||
$$slots?: Slots; | ||
}): Exports & { | ||
$set?: any; | ||
$on?: any; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: { | ||
slotHeader: {}; | ||
default: {}; | ||
slotFooter: {}; | ||
}; | ||
}; | ||
export type SvelteBirdProps = typeof __propDef.props; | ||
export type SvelteBirdEvents = typeof __propDef.events; | ||
export type SvelteBirdSlots = typeof __propDef.slots; | ||
export default class SvelteBird extends SvelteComponent<SvelteBirdProps, SvelteBirdEvents, SvelteBirdSlots> { | ||
z_$$bindings?: Bindings; | ||
} | ||
export {}; | ||
declare const SvelteBird: $$__sveltets_2_IsomorphicComponent<{ | ||
children: Snippet; | ||
snippetHeader: Snippet; | ||
snippetFooter: Snippet; | ||
propSidebarData: typeSidebarData<string>; | ||
propExpandAllMenus?: boolean; | ||
propLogoImage?: string; | ||
propLogoWidth?: number; | ||
propLogoHref?: string; | ||
propTitle?: string; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, {}, {}, "">; | ||
type SvelteBird = InstanceType<typeof SvelteBird>; | ||
export default SvelteBird; |
@@ -0,4 +1,5 @@ | ||
import type { typeContext } from './typeContext.js'; | ||
import type { typeNotificationsData } from './typeNotificationsData.js'; | ||
import type { typeSidebarData } from './typeSidebarData.js'; | ||
import type { typeUserData } from './typeUserData.js'; | ||
export { type typeNotificationsData, type typeSidebarData, type typeUserData }; | ||
export { type typeContext, type typeNotificationsData, type typeSidebarData, type typeUserData }; |
{ | ||
"name": "svelte-bird", | ||
"version": "0.0.21", | ||
"version": "1.0.0", | ||
"description": "svelte-bird is a Svelte/Sveltekit admin template.", | ||
@@ -33,4 +33,4 @@ "repository": { | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"lint": "prettier --plugin-search-dir . --check . && eslint .", | ||
"format": "prettier --plugin-search-dir . --write ." | ||
"lint": "prettier --check . && eslint .", | ||
"format": "prettier --write ." | ||
}, | ||
@@ -41,22 +41,2 @@ "exports": { | ||
"svelte": "./dist/index.js" | ||
}, | ||
"./dist/css/*.css": { | ||
"import": "./dist/css/*.css", | ||
"require": "./dist/css/*.css" | ||
}, | ||
"./dist/components": { | ||
"types": "./dist/components/index.d.ts", | ||
"svelte": "./dist/components/index.js" | ||
}, | ||
"./dist/types": { | ||
"types": "./dist/types/index.d.ts", | ||
"svelte": "./dist/types/index.js" | ||
}, | ||
"./dist/stores": { | ||
"types": "./dist/stores/index.d.ts", | ||
"svelte": "./dist/stores/index.js" | ||
}, | ||
"./dist/functions": { | ||
"types": "./dist/functions/index.d.ts", | ||
"svelte": "./dist/functions/index.js" | ||
} | ||
@@ -70,29 +50,29 @@ }, | ||
"peerDependencies": { | ||
"svelte": "^4.0.0 || ^5.0.0" | ||
"svelte": "^5.0.0-next.1" | ||
}, | ||
"devDependencies": { | ||
"@sveltejs/adapter-auto": "^2.0.0", | ||
"@sveltejs/kit": "^1.20.4", | ||
"@sveltejs/adapter-auto": "^3.0.0", | ||
"@sveltejs/kit": "^2.0.0", | ||
"@sveltejs/package": "^2.0.0", | ||
"@typescript-eslint/eslint-plugin": "^5.45.0", | ||
"@typescript-eslint/parser": "^5.45.0", | ||
"autoprefixer": "^10.4.14", | ||
"eslint": "^8.28.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-svelte": "^2.30.0", | ||
"postcss": "^8.4.27", | ||
"prettier": "^2.8.0", | ||
"prettier-plugin-svelte": "^2.10.1", | ||
"publint": "^0.1.9", | ||
"svelte": "^4.0.5", | ||
"svelte-check": "^3.4.3", | ||
"tailwindcss": "^3.3.3", | ||
"tslib": "^2.4.1", | ||
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6", | ||
"@types/eslint": "^9.6.0", | ||
"autoprefixer": "^10.4.20", | ||
"eslint": "^9.0.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-svelte": "^2.36.0", | ||
"globals": "^15.0.0", | ||
"postcss": "^8.4.47", | ||
"prettier": "^3.1.1", | ||
"prettier-plugin-svelte": "^3.1.2", | ||
"publint": "^0.2.0", | ||
"svelte": "^5.0.0-next.1", | ||
"svelte-check": "^4.0.0", | ||
"tailwindcss": "^3.4.11", | ||
"typescript": "^5.0.0", | ||
"vite": "^4.4.2" | ||
"typescript-eslint": "^8.0.0", | ||
"vite": "^5.0.11" | ||
}, | ||
"svelte": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"type": "module", | ||
"dependencies": {} | ||
"type": "module" | ||
} |
# create-svelte | ||
Everything you need to build a Svelte library, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte). | ||
Everything you need to build a Svelte library, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte). | ||
@@ -5,0 +5,0 @@ Read more about creating a library [in the docs](https://kit.svelte.dev/docs/packaging). |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
87454
63
459
1
20
1