@stubber/ui 1.0.0 → 1.0.1
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 +0 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ export { default as SideNavTitle } from "./components/SideNav/SideNavTitle.svelt
|
|
|
12
12
|
export { default as Modal } from "./components/Modal.svelte";
|
|
13
13
|
export { default as Alert } from "./components/Alert.svelte";
|
|
14
14
|
export { default as StandardInput } from "./components/fields/StandardInput.svelte";
|
|
15
|
-
export { default as Button } from "./atoms/Button.svelte";
|
|
16
15
|
export { default as SpinnerMessage } from "./atoms/SpinnerMessage.svelte";
|
|
17
16
|
export { default as TextOnlyButton } from "./atoms/TextOnlyButton.svelte";
|
|
18
17
|
export { default as TextInput } from "./components/Inputs/TextInput.svelte";
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,6 @@ export { default as StandardInput } from "./components/fields/StandardInput.svel
|
|
|
19
19
|
export { default as DocsIcon } from "./assets/docs-icon.svg";
|
|
20
20
|
|
|
21
21
|
//legacy components
|
|
22
|
-
export { default as Button } from "./atoms/Button.svelte";
|
|
23
22
|
export { default as SpinnerMessage } from "./atoms/SpinnerMessage.svelte";
|
|
24
23
|
export { default as TextOnlyButton } from "./atoms/TextOnlyButton.svelte";
|
|
25
24
|
|
|
@@ -27,3 +26,6 @@ export { default as TextInput } from "./components/Inputs/TextInput.svelte";
|
|
|
27
26
|
export { default as PasswordInput } from "./components/Inputs/PasswordInput.svelte";
|
|
28
27
|
export { default as PasswordStrengthValidator } from "./components/PasswordStrengthValidator.svelte";
|
|
29
28
|
export { default as Tooltip } from "./components/Tooltip.svelte";
|
|
29
|
+
|
|
30
|
+
// new base components using bits-ui
|
|
31
|
+
export { default as Button } from "./components/button/index.ts";
|