flowbite-svelte
Advanced tools
Comparing version 0.8.8 to 0.9.0
@@ -1,17 +0,1 @@ | ||
/** @typedef {typeof __propDef.props} AlertProps */ | ||
/** @typedef {typeof __propDef.events} AlertEvents */ | ||
/** @typedef {typeof __propDef.slots} AlertSlots */ | ||
export default class Alert extends SvelteComponentTyped<{ | ||
color?: string; | ||
alertId?: string; | ||
closeBtn?: boolean; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, { | ||
default: {}; | ||
}> { | ||
} | ||
export type AlertProps = typeof __propDef.props; | ||
export type AlertEvents = typeof __propDef.events; | ||
export type AlertSlots = typeof __propDef.slots; | ||
import { SvelteComponentTyped } from "svelte"; | ||
@@ -31,2 +15,7 @@ declare const __propDef: { | ||
}; | ||
export declare type AlertProps = typeof __propDef.props; | ||
export declare type AlertEvents = typeof __propDef.events; | ||
export declare type AlertSlots = typeof __propDef.slots; | ||
export default class Alert extends SvelteComponentTyped<AlertProps, AlertEvents, AlertSlots> { | ||
} | ||
export {}; |
@@ -1,17 +0,1 @@ | ||
/** @typedef {typeof __propDef.props} BorderAlertProps */ | ||
/** @typedef {typeof __propDef.events} BorderAlertEvents */ | ||
/** @typedef {typeof __propDef.slots} BorderAlertSlots */ | ||
export default class BorderAlert extends SvelteComponentTyped<{ | ||
color?: string; | ||
alertId?: string; | ||
closeBtn?: boolean; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, { | ||
default: {}; | ||
}> { | ||
} | ||
export type BorderAlertProps = typeof __propDef.props; | ||
export type BorderAlertEvents = typeof __propDef.events; | ||
export type BorderAlertSlots = typeof __propDef.slots; | ||
import { SvelteComponentTyped } from "svelte"; | ||
@@ -31,2 +15,7 @@ declare const __propDef: { | ||
}; | ||
export declare type BorderAlertProps = typeof __propDef.props; | ||
export declare type BorderAlertEvents = typeof __propDef.events; | ||
export declare type BorderAlertSlots = typeof __propDef.slots; | ||
export default class BorderAlert extends SvelteComponentTyped<BorderAlertProps, BorderAlertEvents, BorderAlertSlots> { | ||
} | ||
export {}; |
@@ -1,19 +0,1 @@ | ||
/** @typedef {typeof __propDef.props} InfoAlertProps */ | ||
/** @typedef {typeof __propDef.events} InfoAlertEvents */ | ||
/** @typedef {typeof __propDef.slots} InfoAlertSlots */ | ||
export default class InfoAlert extends SvelteComponentTyped<{ | ||
color?: string; | ||
alertId?: string; | ||
closeBtn?: boolean; | ||
infoLink?: boolean; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, { | ||
header: {}; | ||
default: {}; | ||
}> { | ||
} | ||
export type InfoAlertProps = typeof __propDef.props; | ||
export type InfoAlertEvents = typeof __propDef.events; | ||
export type InfoAlertSlots = typeof __propDef.slots; | ||
import { SvelteComponentTyped } from "svelte"; | ||
@@ -24,4 +6,4 @@ declare const __propDef: { | ||
alertId?: string; | ||
infoLink?: string; | ||
closeBtn?: boolean; | ||
infoLink?: boolean; | ||
}; | ||
@@ -36,2 +18,7 @@ events: { | ||
}; | ||
export declare type InfoAlertProps = typeof __propDef.props; | ||
export declare type InfoAlertEvents = typeof __propDef.events; | ||
export declare type InfoAlertSlots = typeof __propDef.slots; | ||
export default class InfoAlert extends SvelteComponentTyped<InfoAlertProps, InfoAlertEvents, InfoAlertSlots> { | ||
} | ||
export {}; |
@@ -5,5 +5,5 @@ /** @typedef {typeof __propDef.props} ButtonProps */ | ||
export default class Button extends SvelteComponentTyped<{ | ||
rounded?: boolean; | ||
textSize?: string; | ||
name?: string; | ||
rounded?: boolean; | ||
type?: string; | ||
@@ -22,5 +22,5 @@ }, { | ||
props: { | ||
rounded?: boolean; | ||
textSize?: string; | ||
name?: string; | ||
rounded?: boolean; | ||
type?: string; | ||
@@ -27,0 +27,0 @@ }; |
@@ -5,5 +5,5 @@ /** @typedef {typeof __propDef.props} DropdownDefaultProps */ | ||
export default class DropdownDefault extends SvelteComponentTyped<{ | ||
rounded?: boolean; | ||
textSize?: string; | ||
color?: string; | ||
rounded?: boolean; | ||
label?: string; | ||
@@ -31,5 +31,5 @@ items?: ({ | ||
props: { | ||
rounded?: boolean; | ||
textSize?: string; | ||
color?: string; | ||
rounded?: boolean; | ||
label?: string; | ||
@@ -36,0 +36,0 @@ items?: ({ |
{ | ||
"name": "flowbite-svelte", | ||
"version": "0.8.8", | ||
"version": "0.9.0", | ||
"description": "Flowbite components for Svelte", | ||
@@ -14,12 +14,23 @@ "author": { | ||
"devDependencies": { | ||
"@codewithshin/svelte-simpleicons": "^0.2.2", | ||
"@playwright/test": "^1.19.1", | ||
"@sveltejs/adapter-auto": "next", | ||
"@sveltejs/kit": "next", | ||
"@typescript-eslint/eslint-plugin": "^5.10.1", | ||
"@typescript-eslint/parser": "^5.10.1", | ||
"autoprefixer": "^10.4.2", | ||
"flowbite-svelte": "^0.8.4", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-svelte3": "^3.2.1", | ||
"postcss": "^8.4.5", | ||
"postcss-load-config": "^3.1.1", | ||
"prettier": "^2.5.1", | ||
"prettier-plugin-svelte": "^2.5.0", | ||
"svelte": "^3.44.0", | ||
"svelte-preprocess": "^4.10.2", | ||
"svelte2tsx": "^0.4.14", | ||
"tailwindcss": "^3.0.12" | ||
"svelte-check": "^2.2.6", | ||
"svelte-preprocess": "^4.10.1", | ||
"svelte2tsx": "^0.5.5", | ||
"tailwindcss": "^3.0.12", | ||
"tslib": "^2.3.1", | ||
"typescript": "~4.6.2" | ||
}, | ||
@@ -33,8 +44,14 @@ "type": "module", | ||
"ui", | ||
"accordion", | ||
"alert", | ||
"badges", | ||
"buttons", | ||
"cards", | ||
"darkmode", | ||
"footer", | ||
"modals", | ||
"cards", | ||
"navbar", | ||
"tabs" | ||
"spinners", | ||
"tabs", | ||
"tooltip" | ||
], | ||
@@ -46,4 +63,4 @@ "repository": { | ||
"dependencies": { | ||
"@codewithshin/svelte-heroicons": "^1.1.0", | ||
"flowbite": "^1.3.2", | ||
"@codewithshin/svelte-heroicons": "^1.1.3", | ||
"flowbite": "^1.3.4", | ||
"svelte-collapse": "^0.0.4" | ||
@@ -50,0 +67,0 @@ }, |
@@ -21,4 +21,8 @@ # FLOWBITE-SVELTE | ||
## Button component | ||
## Button group compnents | ||
[Button group](https://flowbite-svelte.vercel.app/button-groups) | ||
## Button components | ||
[Buttons](https://flowbite-svelte.vercel.app/buttons) | ||
@@ -38,2 +42,6 @@ | ||
## Footer | ||
[Footer](https://flowbite-svelte.vercel.app/footer) | ||
## Icons | ||
@@ -40,0 +48,0 @@ |
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
71
244393
21
1936
Updatedflowbite@^1.3.4