flowbite-svelte
Advanced tools
Comparing version 0.44.21 to 0.44.22
@@ -12,3 +12,3 @@ import { SvelteComponent } from "svelte"; | ||
alt?: string | undefined; | ||
size?: "xs" | "sm" | "lg" | "xl" | "md" | undefined; | ||
size?: "none" | "xs" | "sm" | "lg" | "xl" | "md" | undefined; | ||
}; | ||
@@ -35,3 +35,3 @@ events: { | ||
* @prop export let alt: string = ''; | ||
* @prop export let size: 'xs' | 'sm' | 'md' | 'lg' | 'xl' = 'md'; | ||
* @prop export let size: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'none' = 'md'; | ||
*/ | ||
@@ -38,0 +38,0 @@ export default class Avatar extends SvelteComponent<AvatarProps, AvatarEvents, AvatarSlots> { |
@@ -20,3 +20,3 @@ import { SvelteComponent } from "svelte"; | ||
slideDuration?: number | undefined; | ||
transition: ((node: HTMLElement, params: any) => TransitionConfig) | null; | ||
transition?: ((node: HTMLElement, params: any) => TransitionConfig) | null | undefined; | ||
duration?: number | undefined; | ||
@@ -52,3 +52,3 @@ ariaLabel?: string | undefined; | ||
* @prop export let slideDuration: number = 1000; | ||
* @prop export let transition: TransitionFunc | null; | ||
* @prop export let transition: TransitionFunc | null = null; | ||
* @prop export let duration: number = 0; | ||
@@ -55,0 +55,0 @@ * @prop export let ariaLabel: string = 'Draggable Carousel'; |
@@ -27,7 +27,7 @@ import { SvelteComponent } from "svelte"; | ||
} & { | ||
items: (LinkType & { | ||
items?: (LinkType & { | ||
[propName: string]: any; | ||
})[]; | ||
full: boolean; | ||
ulClass: string; | ||
})[] | undefined; | ||
full?: boolean | undefined; | ||
ulClass?: string | undefined; | ||
}; | ||
@@ -44,2 +44,3 @@ events: { | ||
}; | ||
index: number; | ||
}; | ||
@@ -46,0 +47,0 @@ extra: {}; |
@@ -15,4 +15,3 @@ import { SvelteComponent } from "svelte"; | ||
} & { | ||
color: 'gray' | 'red' | 'yellow' | 'green' | 'indigo' | 'purple' | 'pink' | 'blue' | 'dark' | 'none'; | ||
embedded: boolean; | ||
embedded?: boolean | undefined; | ||
}; | ||
@@ -33,3 +32,2 @@ events: { | ||
* ## Props | ||
* @prop export let color: ToolbarColorType = 'dark'; | ||
* @prop export let embedded: boolean = false; | ||
@@ -36,0 +34,0 @@ */ |
{ | ||
"name": "flowbite-svelte", | ||
"version": "0.44.21", | ||
"version": "0.44.22", | ||
"description": "Flowbite components for Svelte", | ||
@@ -36,12 +36,13 @@ "main": "dist/index.js", | ||
"@docsearch/js": "^3.5.2", | ||
"@playwright/test": "^1.40.0", | ||
"@sveltejs/adapter-vercel": "^3.1.0", | ||
"@sveltejs/kit": "^1.27.6", | ||
"@playwright/test": "^1.40.1", | ||
"@sveltejs/adapter-vercel": "^4.0.4", | ||
"@sveltejs/kit": "^2.3.2", | ||
"@sveltejs/package": "2.2.2", | ||
"@typescript-eslint/eslint-plugin": "^6.12.0", | ||
"@typescript-eslint/parser": "^6.12.0", | ||
"@sveltejs/vite-plugin-svelte": "^3.0.1", | ||
"@typescript-eslint/eslint-plugin": "^6.18.1", | ||
"@typescript-eslint/parser": "^6.18.1", | ||
"autoprefixer": "^10.4.16", | ||
"esbuild": "0.19.5", | ||
"eslint": "^8.54.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-svelte": "^2.35.1", | ||
@@ -51,19 +52,19 @@ "flowbite-svelte-icons": "^0.4.5", | ||
"mdsvexamples": "^0.4.1", | ||
"postcss": "^8.4.31", | ||
"postcss": "^8.4.33", | ||
"postcss-load-config": "^4.0.2", | ||
"prettier": "^3.1.0", | ||
"prettier": "^3.1.1", | ||
"prettier-plugin-svelte": "^3.1.2", | ||
"prism-themes": "^1.9.0", | ||
"publint": "^0.2.5", | ||
"svelte": "^4.2.7", | ||
"svelte-check": "^3.6.1", | ||
"publint": "^0.2.7", | ||
"svelte": "^4.2.8", | ||
"svelte-check": "^3.6.3", | ||
"svelte-lib-helpers": "^0.3.15", | ||
"svelte-meta-tags": "^3.1.0", | ||
"svelte-preprocess": "^5.1.1", | ||
"svelte2tsx": "^0.6.26", | ||
"svelte-preprocess": "^5.1.3", | ||
"svelte2tsx": "^0.7.0", | ||
"tailwind-merge": "^1.13.1", | ||
"tailwindcss": "^3.3.5", | ||
"tailwindcss": "^3.4.1", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.3.2", | ||
"vite": "^4.5.0", | ||
"typescript": "^5.3.3", | ||
"vite": "^5.0.11", | ||
"vitest": "^0.34.6" | ||
@@ -118,6 +119,6 @@ }, | ||
"dependencies": { | ||
"@floating-ui/dom": "^1.5.3", | ||
"apexcharts": "^3.44.0", | ||
"flowbite": "^2.2.0", | ||
"tailwind-merge": "^2.0.0" | ||
"@floating-ui/dom": "^1.5.4", | ||
"apexcharts": "^3.45.1", | ||
"flowbite": "^2.2.1", | ||
"tailwind-merge": "^2.2.0" | ||
}, | ||
@@ -156,6 +157,2 @@ "engines": { | ||
}, | ||
"./Placeholder.svelte": { | ||
"types": "./dist/avatar/Placeholder.svelte.d.ts", | ||
"svelte": "./dist/avatar/Placeholder.svelte" | ||
}, | ||
"./Badge.svelte": { | ||
@@ -162,0 +159,0 @@ "types": "./dist/badge/Badge.svelte.d.ts", |
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
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
637467
34
486
6096
Updated@floating-ui/dom@^1.5.4
Updatedapexcharts@^3.45.1
Updatedflowbite@^2.2.1
Updatedtailwind-merge@^2.2.0