flowbite-svelte
Advanced tools
Comparing version 0.13.8 to 0.13.9
@@ -12,3 +12,2 @@ import { SvelteComponentTyped } from "svelte"; | ||
textdivClass?: string; | ||
paragraphClass?: string; | ||
headerClass?: string; | ||
@@ -15,0 +14,0 @@ header?: string; |
@@ -5,2 +5,3 @@ import { SvelteComponentTyped } from "svelte"; | ||
caption?: string; | ||
captionClass?: string; | ||
}; | ||
@@ -7,0 +8,0 @@ events: { |
@@ -9,2 +9,7 @@ import { SvelteComponentTyped } from "svelte"; | ||
slideControls?: boolean; | ||
divClass?: string; | ||
indicatorDivClass?: string; | ||
captionClass?: string; | ||
indicatorClass?: string; | ||
slideClass?: string; | ||
}; | ||
@@ -11,0 +16,0 @@ events: { |
@@ -6,2 +6,3 @@ import { SvelteComponentTyped } from "svelte"; | ||
selected?: boolean; | ||
indicatorClass?: string; | ||
}; | ||
@@ -8,0 +9,0 @@ events: { |
@@ -7,2 +7,3 @@ import { SvelteComponentTyped } from "svelte"; | ||
attr?: string; | ||
slideClass?: string; | ||
}; | ||
@@ -9,0 +10,0 @@ events: { |
@@ -5,2 +5,20 @@ # Changelog | ||
### [0.13.9](https://github.com/shinokada/flowbite-svelte/compare/v0.13.8...v0.13.9) (2022-04-16) | ||
### Features | ||
* add focus on load to Input component ([5d0c7fb](https://github.com/shinokada/flowbite-svelte/commit/5d0c7fb7750aac2dc0df2ddd24a7c11cd66404c6)) | ||
### Bug Fixes | ||
* add 100% to pre tag ([3c8eaf2](https://github.com/shinokada/flowbite-svelte/commit/3c8eaf257697c48121cc79496885e05309b302bc)) | ||
* Input padding uses p-4, p-2.5 and p-2 depends on the size ([632bd5d](https://github.com/shinokada/flowbite-svelte/commit/632bd5d550b0268a93eec91598b35a854a45c081)) | ||
* logo ([c28e9f3](https://github.com/shinokada/flowbite-svelte/commit/c28e9f3683140e1bb12f4667e26e5d7805d4ddb9)) | ||
* moved p-tag and h3 tag css to app.css ([cb3d08e](https://github.com/shinokada/flowbite-svelte/commit/cb3d08edb98d96cadad9975e20488af55f4fa344)) | ||
* refresh dev environment ([3a1b452](https://github.com/shinokada/flowbite-svelte/commit/3a1b452f925e14b2d159456c8f1f50b2972ae52b)) | ||
* update carousel page ([27c621b](https://github.com/shinokada/flowbite-svelte/commit/27c621b5f7a97896635ddbc2aa9cccf624275e80)) | ||
* update main nav. add transition to carousel ([3a9f572](https://github.com/shinokada/flowbite-svelte/commit/3a9f5723af8f54ef58c6902af5599114cc81fb86)) | ||
### [0.13.8](https://github.com/shinokada/flowbite-svelte/compare/v0.13.7...v0.13.8) (2022-04-14) | ||
@@ -7,0 +25,0 @@ |
@@ -20,2 +20,3 @@ import { SvelteComponentTyped } from "svelte"; | ||
helperClass?: string; | ||
ref?: HTMLElement; | ||
}; | ||
@@ -22,0 +23,0 @@ events: { |
@@ -9,2 +9,3 @@ import { SvelteComponentTyped } from "svelte"; | ||
rows?: number; | ||
ref?: HTMLElement; | ||
placeholder?: string; | ||
@@ -11,0 +12,0 @@ labelClass?: string; |
@@ -15,2 +15,3 @@ export { default as Accordion } from "./accordions/AccordionDefault.svelte"; | ||
export { default as BadgeLink } from "./badges/BadgeLink.svelte"; | ||
export { default as Breadcrumb } from "./breadcrumbs/Breadcrumb.svelte"; | ||
export { default as Button } from "./buttons/Button.svelte"; | ||
@@ -31,2 +32,3 @@ export { default as ColorShadowButton } from "./buttons/ColorShadowButton.svelte"; | ||
export { default as Carousel } from "./carousels/Carousel.svelte"; | ||
export { default as CarouselTransition } from "./carousels/CarouselTransition.svelte"; | ||
export { default as DarkMode } from "./darkmode/DarkMode.svelte"; | ||
@@ -33,0 +35,0 @@ export { default as Dropdown } from "./dropdowns/DropdownDefault.svelte"; |
@@ -23,4 +23,7 @@ // Accordion | ||
export { default as BadgeIcon } from'./badges/BadgeIcon.svelte' | ||
export { default as BadgeLink } from'./badges/BadgeLink.svelte' | ||
export { default as BadgeLink } from './badges/BadgeLink.svelte' | ||
// Breadcrumbs | ||
export { default as Breadcrumb } from'./breadcrumbs/Breadcrumb.svelte' | ||
// Buttons | ||
@@ -48,2 +51,3 @@ export { default as Button } from'./buttons/Button.svelte' | ||
export { default as Carousel } from './carousels/Carousel.svelte' | ||
export { default as CarouselTransition } from './carousels/CarouselTransition.svelte' | ||
@@ -50,0 +54,0 @@ // Dark mode |
{ | ||
"name": "flowbite-svelte", | ||
"version": "0.13.8", | ||
"version": "0.13.9", | ||
"description": "Flowbite components for Svelte", | ||
@@ -15,6 +15,7 @@ "main": "./package/index.js", | ||
"devDependencies": { | ||
"@codewithshin/svelte-sidebar": "^0.4.7", | ||
"@codewithshin/svelte-heroicons": "^1.1.3", | ||
"@codewithshin/svelte-sidebar": "^0.4.8", | ||
"@codewithshin/svelte-simpleicons": "^0.2.2", | ||
"@codewithshin/svelte-utterances": "^0.1.2", | ||
"@playwright/test": "^1.19.1", | ||
"@codewithshin/svelte-utterances": "^0.2.2", | ||
"@playwright/test": "^1.21.0", | ||
"@sveltejs/adapter-auto": "next", | ||
@@ -24,9 +25,11 @@ "@sveltejs/kit": "next", | ||
"@typescript-eslint/parser": "^5.10.1", | ||
"autoprefixer": "^10.4.2", | ||
"autoprefixer": "^10.4.4", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-svelte3": "^3.2.1", | ||
"flowbite": "^1.4.1", | ||
"flowbite-svelte": "^0.13.8", | ||
"mdsvex": "^0.10.5", | ||
"postcss": "^8.4.5", | ||
"postcss-load-config": "^3.1.1", | ||
"postcss": "^8.4.12", | ||
"postcss-load-config": "^3.1.4", | ||
"prettier": "^2.5.1", | ||
@@ -37,5 +40,6 @@ "prettier-plugin-svelte": "^2.5.0", | ||
"svelte-check": "^2.2.6", | ||
"svelte-preprocess": "^4.10.1", | ||
"svelte2tsx": "^0.5.5", | ||
"tailwindcss": "^3.0.12", | ||
"svelte-collapse": "^0.0.4", | ||
"svelte-preprocess": "^4.10.5", | ||
"svelte2tsx": "^0.5.9", | ||
"tailwindcss": "^3.0.23", | ||
"tslib": "^2.3.1", | ||
@@ -78,9 +82,5 @@ "typescript": "~4.6.2" | ||
}, | ||
"dependencies": { | ||
"@codewithshin/svelte-heroicons": "^1.1.3", | ||
"flowbite": "^1.3.4", | ||
"svelte-collapse": "^0.0.4" | ||
}, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
"./.DS_Store": "./.DS_Store", | ||
"./accordions/AccordionDefault.svelte": "./accordions/AccordionDefault.svelte", | ||
@@ -101,2 +101,3 @@ "./accordions/AccordionItem.svelte": "./accordions/AccordionItem.svelte", | ||
"./badges/BadgeLink.svelte": "./badges/BadgeLink.svelte", | ||
"./breadcrumbs/Breadcrumb.svelte": "./breadcrumbs/Breadcrumb.svelte", | ||
"./buttongroups/ButtonGroup.svelte": "./buttongroups/ButtonGroup.svelte", | ||
@@ -118,2 +119,3 @@ "./buttongroups/ButtonGroupOutline.svelte": "./buttongroups/ButtonGroupOutline.svelte", | ||
"./carousels/Carousel.svelte": "./carousels/Carousel.svelte", | ||
"./carousels/CarouselTransition.svelte": "./carousels/CarouselTransition.svelte", | ||
"./carousels/Indicator.svelte": "./carousels/Indicator.svelte", | ||
@@ -120,0 +122,0 @@ "./carousels/Slide.svelte": "./carousels/Slide.svelte", |
@@ -60,2 +60,6 @@ # FLOWBITE-SVELTE | ||
## Carousel components | ||
- [Carousel](https://flowbite-svelte.vercel.app/carousels) | ||
## Dark mode components | ||
@@ -62,0 +66,0 @@ |
@@ -6,3 +6,3 @@ import { SvelteComponentTyped } from "svelte"; | ||
menuItems: Array<Array<string>>; | ||
filteredItems?: any[]; | ||
filteredItems?: Array<Array<string>>; | ||
placeholder?: string; | ||
@@ -9,0 +9,0 @@ header: Array<string>; |
@@ -124,3 +124,3 @@ import type { SvelteComponent } from 'svelte'; | ||
} | ||
export declare type TransitionTypes = 'fade' | 'fly' | 'slide' | 'blur'; | ||
export declare type TransitionTypes = 'fade' | 'fly' | 'slide' | 'blur' | 'in:fly' | 'out:fly' | 'in:slide' | 'out:slide' | 'in:fade' | 'out:fade' | 'in:blur' | 'out:blur'; | ||
export interface TimelineItemType { | ||
@@ -127,0 +127,0 @@ date: Date | string; |
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
341532
0
205
2566
157
29
- Removedflowbite@^1.3.4
- Removedsvelte-collapse@^0.0.4
- Removed@codewithshin/svelte-heroicons@1.2.1(transitive)
- Removed@popperjs/core@2.11.8(transitive)
- Removedflowbite@1.8.1(transitive)
- Removedmini-svg-data-uri@1.4.4(transitive)
- Removedsvelte-collapse@0.0.4(transitive)