flowbite-svelte 0.34.1 → 0.34.2
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/dist/index.d.ts
CHANGED
|
@@ -42,7 +42,6 @@ export { default as Radio } from "./forms/Radio.svelte";
|
|
|
42
42
|
export { default as Range } from "./forms/Range.svelte";
|
|
43
43
|
export { default as Search } from "./forms/Search.svelte";
|
|
44
44
|
export { default as Select } from "./forms/Select.svelte";
|
|
45
|
-
export { default as SimpleSearch } from "./forms/SimpleSearch.svelte";
|
|
46
45
|
export { default as Textarea } from "./forms/Textarea.svelte";
|
|
47
46
|
export { default as Toggle } from "./forms/Toggle.svelte";
|
|
48
47
|
export { default as VoiceSearch } from "./forms/VoiceSearch.svelte";
|
package/dist/index.js
CHANGED
|
@@ -75,7 +75,6 @@ export { default as Radio } from './forms/Radio.svelte';
|
|
|
75
75
|
export { default as Range } from './forms/Range.svelte';
|
|
76
76
|
export { default as Search } from './forms/Search.svelte';
|
|
77
77
|
export { default as Select } from './forms/Select.svelte';
|
|
78
|
-
export { default as SimpleSearch } from './forms/SimpleSearch.svelte';
|
|
79
78
|
export { default as Textarea } from './forms/Textarea.svelte';
|
|
80
79
|
export { default as Toggle } from './forms/Toggle.svelte';
|
|
81
80
|
export { default as VoiceSearch } from './forms/VoiceSearch.svelte';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowbite-svelte",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.2",
|
|
4
4
|
"description": "Flowbite components for Svelte",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Shinichi Okada",
|
|
@@ -318,10 +318,6 @@
|
|
|
318
318
|
"types": "./dist/forms/Select.svelte.d.ts",
|
|
319
319
|
"svelte": "./dist/forms/Select.svelte"
|
|
320
320
|
},
|
|
321
|
-
"./SimpleSearch.svelte": {
|
|
322
|
-
"types": "./dist/forms/SimpleSearch.svelte.d.ts",
|
|
323
|
-
"svelte": "./dist/forms/SimpleSearch.svelte"
|
|
324
|
-
},
|
|
325
321
|
"./Textarea.svelte": {
|
|
326
322
|
"types": "./dist/forms/Textarea.svelte.d.ts",
|
|
327
323
|
"svelte": "./dist/forms/Textarea.svelte"
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<script>import Search from './Search.svelte';
|
|
2
|
-
import Button from '../buttons/Button.svelte';
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
|
-
<form class="flex gap-2" on:submit>
|
|
6
|
-
<Search size="md" {...$$restProps} />
|
|
7
|
-
<Button class="!p-2.5">
|
|
8
|
-
<svg
|
|
9
|
-
class="w-5 h-5"
|
|
10
|
-
fill="none"
|
|
11
|
-
stroke="currentColor"
|
|
12
|
-
viewBox="0 0 24 24"
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
><path
|
|
15
|
-
stroke-linecap="round"
|
|
16
|
-
stroke-linejoin="round"
|
|
17
|
-
stroke-width="2"
|
|
18
|
-
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" /></svg>
|
|
19
|
-
</Button>
|
|
20
|
-
</form>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
declare const __propDef: {
|
|
3
|
-
props: {
|
|
4
|
-
[x: string]: never;
|
|
5
|
-
};
|
|
6
|
-
events: {
|
|
7
|
-
submit: SubmitEvent;
|
|
8
|
-
} & {
|
|
9
|
-
[evt: string]: CustomEvent<any>;
|
|
10
|
-
};
|
|
11
|
-
slots: {};
|
|
12
|
-
};
|
|
13
|
-
export type SimpleSearchProps = typeof __propDef.props;
|
|
14
|
-
export type SimpleSearchEvents = typeof __propDef.events;
|
|
15
|
-
export type SimpleSearchSlots = typeof __propDef.slots;
|
|
16
|
-
export default class SimpleSearch extends SvelteComponentTyped<SimpleSearchProps, SimpleSearchEvents, SimpleSearchSlots> {
|
|
17
|
-
}
|
|
18
|
-
export {};
|