@flightlesslabs/dodo-ui 1.0.0--beta-1 → 1.0.0--beta-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/components/Form/index.d.ts +2 -2
- package/dist/components/Form/index.js +2 -10
- package/dist/index.d.ts +2 -0
- package/dist/index.js +0 -10
- package/package.json +1 -1
- package/src/lib/components/Form/index.ts +6 -6
- package/src/lib/index.ts +10 -10
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default as Button, } from './Button/Button.svelte';
|
|
2
|
-
export { default as TextInput, } from './TextInput/TextInput.svelte';
|
|
1
|
+
export { default as Button, type ButtonAsButtonProps, type ButtonAsAnchorProps, type ButtonProps, } from './Button/Button.svelte';
|
|
2
|
+
export { default as TextInput, type TextInputEvent, type TextInputFocusEvent, type TextInputProps, } from './TextInput/TextInput.svelte';
|
|
3
3
|
export { default as InputEnclosure, type InputEnclosureProps, } from './InputEnclosure/InputEnclosure.svelte';
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
export { default as Button,
|
|
2
|
-
|
|
3
|
-
// type ButtonAsAnchorProps,
|
|
4
|
-
// type ButtonProps,
|
|
5
|
-
} from './Button/Button.svelte';
|
|
6
|
-
export { default as TextInput,
|
|
7
|
-
// type TextInputEvent,
|
|
8
|
-
// type TextInputFocusEvent,
|
|
9
|
-
// type TextInputProps,
|
|
10
|
-
} from './TextInput/TextInput.svelte';
|
|
1
|
+
export { default as Button, } from './Button/Button.svelte';
|
|
2
|
+
export { default as TextInput, } from './TextInput/TextInput.svelte';
|
|
11
3
|
export { default as InputEnclosure, } from './InputEnclosure/InputEnclosure.svelte';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
* Button component and related prop types.
|
|
3
3
|
*/
|
|
4
4
|
export { Button } from './components/Form/index.js';
|
|
5
|
+
export type { ButtonAsButtonProps, ButtonAsAnchorProps, ButtonProps, } from './components/Form/index.js';
|
|
5
6
|
/**
|
|
6
7
|
* TextInput component and related types/events.
|
|
7
8
|
*/
|
|
8
9
|
export { TextInput } from './components/Form/index.js';
|
|
10
|
+
export type { TextInputEvent, TextInputFocusEvent, TextInputProps, } from './components/Form/index.js';
|
|
9
11
|
/**
|
|
10
12
|
* InputEnclosure component and related prop types.
|
|
11
13
|
*/
|
package/dist/index.js
CHANGED
|
@@ -5,20 +5,10 @@
|
|
|
5
5
|
* Button component and related prop types.
|
|
6
6
|
*/
|
|
7
7
|
export { Button } from './components/Form/index.js';
|
|
8
|
-
// export type {
|
|
9
|
-
// ButtonAsButtonProps,
|
|
10
|
-
// ButtonAsAnchorProps,
|
|
11
|
-
// ButtonProps,
|
|
12
|
-
// } from './components/Form/index.js';
|
|
13
8
|
/**
|
|
14
9
|
* TextInput component and related types/events.
|
|
15
10
|
*/
|
|
16
11
|
export { TextInput } from './components/Form/index.js';
|
|
17
|
-
// export type {
|
|
18
|
-
// TextInputEvent,
|
|
19
|
-
// TextInputFocusEvent,
|
|
20
|
-
// TextInputProps,
|
|
21
|
-
// } from './components/Form/index.js';
|
|
22
12
|
/**
|
|
23
13
|
* InputEnclosure component and related prop types.
|
|
24
14
|
*/
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
export {
|
|
2
2
|
default as Button,
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
type ButtonAsButtonProps,
|
|
4
|
+
type ButtonAsAnchorProps,
|
|
5
|
+
type ButtonProps,
|
|
6
6
|
} from './Button/Button.svelte';
|
|
7
7
|
|
|
8
8
|
export {
|
|
9
9
|
default as TextInput,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
type TextInputEvent,
|
|
11
|
+
type TextInputFocusEvent,
|
|
12
|
+
type TextInputProps,
|
|
13
13
|
} from './TextInput/TextInput.svelte';
|
|
14
14
|
|
|
15
15
|
export {
|
package/src/lib/index.ts
CHANGED
|
@@ -7,22 +7,22 @@
|
|
|
7
7
|
*/
|
|
8
8
|
export { Button } from './components/Form/index.js';
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
export type {
|
|
11
|
+
ButtonAsButtonProps,
|
|
12
|
+
ButtonAsAnchorProps,
|
|
13
|
+
ButtonProps,
|
|
14
|
+
} from './components/Form/index.js';
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* TextInput component and related types/events.
|
|
18
18
|
*/
|
|
19
19
|
export { TextInput } from './components/Form/index.js';
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
export type {
|
|
22
|
+
TextInputEvent,
|
|
23
|
+
TextInputFocusEvent,
|
|
24
|
+
TextInputProps,
|
|
25
|
+
} from './components/Form/index.js';
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
28
|
* InputEnclosure component and related prop types.
|