flowbite-svelte 0.14.4 → 0.14.5

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/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.14.5](https://github.com/themesberg/flowbite-svelte/compare/v0.14.4...v0.14.5) (2022-04-19)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * export dropdownIdStore in index.js ([4c897d9](https://github.com/themesberg/flowbite-svelte/commit/4c897d973a88e7d1863e28c49a1675110649252f))
11
+ * update test for /buttons/setup page ([90daabb](https://github.com/themesberg/flowbite-svelte/commit/90daabbad3d921e5938c990f3099bd268df4aebf))
12
+
5
13
  ### [0.14.4](https://github.com/shinokada/flowbite-svelte/compare/v0.14.3...v0.14.4) (2022-04-19)
6
14
 
7
15
 
package/README.md CHANGED
@@ -63,7 +63,8 @@
63
63
 
64
64
  ## Carousel components
65
65
 
66
- - [Carousel](https://flowbite-svelte.vercel.app/carousels)
66
+ - [Carousel](https://flowbite-svelte.vercel.app/carousels/default)
67
+ - [Carousel with transition](https://flowbite-svelte.vercel.app/carousels/transition)
67
68
 
68
69
  ## Dark mode components
69
70
 
@@ -112,6 +113,10 @@
112
113
 
113
114
  - [Pagination](https://flowbite-svelte.vercel.app/paginations)
114
115
 
116
+ ## Progress bar
117
+
118
+ - [Probress bar](https://flowbite-svelte.vercel.app/progressbars)
119
+
115
120
  ## Sidebar components
116
121
 
117
122
  - [Sidebar](https://flowbite-svelte.vercel.app/sidebars)
package/index.js CHANGED
@@ -55,6 +55,7 @@ export { default as DarkMode } from'./darkmode/DarkMode.svelte'
55
55
  // Dropdown
56
56
  export { default as Dropdown } from './dropdowns/DropdownDefault.svelte'
57
57
  export { default as ImgDropdown } from './dropdowns/ImgDropdown.svelte'
58
+ export { dropdownIdStore } from'./modropdownsdals/dropdownStores'
58
59
 
59
60
  // Footers
60
61
  export { default as SimpleFooter } from'./footer/SimpleFooter.svelte'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.14.4",
3
+ "version": "0.14.5",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "main": "./package/index.js",
6
6
  "author": {
@@ -50,10 +50,13 @@
50
50
  "alert",
51
51
  "avatar",
52
52
  "badges",
53
+ "breadcrumbs",
53
54
  "button-groups",
54
55
  "buttons",
55
56
  "cards",
57
+ "carousel",
56
58
  "darkmode",
59
+ "dropdown",
57
60
  "footer",
58
61
  "forms",
59
62
  "list group",
@@ -71,7 +74,7 @@
71
74
  ],
72
75
  "repository": {
73
76
  "type": "git",
74
- "url": "https://github.com/shinokada/flowbite-svelte"
77
+ "url": "https://github.com/themesberg/flowbite-svelte"
75
78
  },
76
79
  "dependencies": {
77
80
  "@codewithshin/svelte-heroicons": "^1.1.3",