hamzus-ui 0.0.5 → 0.0.6
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 +14 -0
- package/index.js +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
// index.d.ts
|
|
2
2
|
import type { SvelteComponentTyped } from "svelte";
|
|
3
3
|
|
|
4
|
+
// button
|
|
4
5
|
export class Button extends SvelteComponentTyped<any> {}
|
|
5
6
|
export class IconButton extends SvelteComponentTyped<any> {}
|
|
7
|
+
// text
|
|
8
|
+
export class Tag extends SvelteComponentTyped<any> {}
|
|
9
|
+
export class InfoCard extends SvelteComponentTyped<any> {}
|
|
10
|
+
export class AlertCard extends SvelteComponentTyped<any> {}
|
|
11
|
+
export class Link extends SvelteComponentTyped<any> {}
|
|
12
|
+
export class Kbd extends SvelteComponentTyped<any> {}
|
|
13
|
+
|
|
14
|
+
// dialog
|
|
15
|
+
export class Dialog extends SvelteComponentTyped<any> {}
|
|
16
|
+
|
|
17
|
+
// form
|
|
18
|
+
export class Input extends SvelteComponentTyped<any> {}
|
|
19
|
+
|
|
6
20
|
|
|
7
21
|
export * as DropdownMenu from "./src/components/hamzus-ui/DropdownMenu";
|
|
8
22
|
export * as Popover from "./src/components/hamzus-ui/Popover";
|
package/index.js
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
|
+
// button
|
|
1
2
|
export { default as Button } from "./src/components/hamzus-ui/Button/Button.svelte"
|
|
2
3
|
export { default as IconButton } from "./src/components/hamzus-ui/IconButton/IconButton.svelte"
|
|
4
|
+
// text
|
|
5
|
+
export { default as Tag } from "./src/components/hamzus-ui/Tag/Tag.svelte"
|
|
6
|
+
export { default as InfoCard } from "./src/components/hamzus-ui/InfoCard/InfoCard.svelte"
|
|
7
|
+
export { default as AlertCard } from "./src/components/hamzus-ui/AlertCard/AlertCard.svelte"
|
|
8
|
+
export { default as Link } from "./src/components/hamzus-ui/Link/Link.svelte"
|
|
9
|
+
export { default as Kbd } from "./src/components/hamzus-ui/KBD/KBD.svelte"
|
|
10
|
+
// dialog
|
|
11
|
+
export { default as Dialog } from "./src/components/hamzus-ui/Dialog/Dialog.svelte"
|
|
12
|
+
// form
|
|
13
|
+
export { default as Input } from "./src/components/hamzus-ui/Input/Input.svelte"
|
|
14
|
+
|
|
3
15
|
|
|
4
16
|
export * as DropdownMenu from "./src/components/hamzus-ui/DropdownMenu"
|
|
5
17
|
export * as Popover from "./src/components/hamzus-ui/Popover"
|