hamzus-ui 0.0.10 → 0.0.11
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/index.d.ts +9 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,19 +5,19 @@ import type { SvelteComponentTyped } from "svelte";
|
|
|
5
5
|
export { default as Button } from "./src/components/hamzus-ui/Button/Button.svelte"
|
|
6
6
|
export { default as IconButton } from "./src/components/hamzus-ui/IconButton/IconButton.svelte"
|
|
7
7
|
// text
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
8
|
+
export { default as Chips } from "./src/components/hamzus-ui/Chips/Chips.svelte"
|
|
9
|
+
export { default as Tag } from "./src/components/hamzus-ui/Tag/Tag.svelte"
|
|
10
|
+
export { default as InfoCard } from "./src/components/hamzus-ui/InfoCard/InfoCard.svelte"
|
|
11
|
+
export { default as AlertCard } from "./src/components/hamzus-ui/AlertCard/AlertCard.svelte"
|
|
12
|
+
export { default as Link } from "./src/components/hamzus-ui/Link/Link.svelte"
|
|
13
|
+
export { default as Kbd } from "./src/components/hamzus-ui/Kbd/Kbd.svelte"
|
|
14
14
|
|
|
15
15
|
// dialog
|
|
16
|
-
export
|
|
16
|
+
export { default as Dialog } from "./src/components/hamzus-ui/Dialog/Dialog.svelte"
|
|
17
17
|
|
|
18
18
|
// form
|
|
19
|
-
export
|
|
20
|
-
export
|
|
19
|
+
export { default as Input } from "./src/components/hamzus-ui/Input/Input.svelte"
|
|
20
|
+
export { default as DatePicker } from "./src/components/hamzus-ui/DatePicker/DatePicker.svelte"
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
export * as DropdownMenu from "./src/components/hamzus-ui/DropdownMenu";
|