@valerius_petrini/corekit-ui 0.1.40 → 0.1.41

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.
@@ -0,0 +1,8 @@
1
+ declare const FloatingSelect: import("svelte").Component<{
2
+ children?: any;
3
+ class?: string;
4
+ options?: any[];
5
+ id?: any;
6
+ } & Record<string, any>, {}, "">;
7
+ type FloatingSelect = ReturnType<typeof FloatingSelect>;
8
+ export default FloatingSelect;
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ export { default as Navbar } from "./components/Navbar.svelte";
6
6
  export { default as NavbarSeparator } from "./components/NavbarSeparator.svelte";
7
7
  export { default as NavbarElement } from "./components/NavbarElement.svelte";
8
8
  export { default as FloatingInput } from "./components/FloatingInput.svelte";
9
+ export { default as FloatingSelect } from "./components/FloatingSelect.svelte";
9
10
  export { default as Text } from "./components/Text.svelte";
10
11
  export { default as Card } from "./components/Card.svelte";
11
12
  export { fbmBackground } from "./actions/fbm.ts";
package/dist/index.js CHANGED
@@ -6,6 +6,7 @@ export { default as Navbar } from "./components/Navbar.svelte";
6
6
  export { default as NavbarSeparator } from "./components/NavbarSeparator.svelte";
7
7
  export { default as NavbarElement } from "./components/NavbarElement.svelte";
8
8
  export { default as FloatingInput } from "./components/FloatingInput.svelte";
9
+ export { default as FloatingSelect } from "./components/FloatingSelect.svelte";
9
10
  export { default as Text } from "./components/Text.svelte";
10
11
  export { default as Card } from "./components/Card.svelte";
11
12
  export { fbmBackground } from "./actions/fbm.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valerius_petrini/corekit-ui",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "Component Library used across all my projects",
5
5
  "author": "Valerius Petrini Jr.",
6
6
  "license": "MIT",
@@ -1,8 +0,0 @@
1
- declare const FloatingDropdown: import("svelte").Component<{
2
- children?: any;
3
- class?: string;
4
- options?: any[];
5
- id?: any;
6
- } & Record<string, any>, {}, "">;
7
- type FloatingDropdown = ReturnType<typeof FloatingDropdown>;
8
- export default FloatingDropdown;