@lumx/vue 4.15.0-next.0 → 4.15.0-next.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/components/avatar/Avatar.d.ts +12 -2
- package/components/expansion-panel/ExpansionPanel.d.ts +1 -1
- package/components/tabs/Tab.d.ts +12 -2
- package/components/text-field/RawInputText.d.ts +6 -0
- package/components/text-field/RawInputTextarea.d.ts +6 -0
- package/index.js +2087 -2058
- package/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -15,7 +15,14 @@ export type AvatarProps = VueToJSXProps<UIProps, 'image' | 'actions' | 'badge'>
|
|
|
15
15
|
/** Props to pass to the thumbnail (minus those already set by the Avatar props). */
|
|
16
16
|
thumbnailProps?: Omit<ThumbnailProps, 'image' | 'alt' | 'size' | 'theme' | 'aspectRatio'>;
|
|
17
17
|
};
|
|
18
|
-
declare const
|
|
18
|
+
export declare const emitSchema: {
|
|
19
|
+
click: (_event?: MouseEvent) => boolean;
|
|
20
|
+
keypress: (_event?: KeyboardEvent) => boolean;
|
|
21
|
+
};
|
|
22
|
+
declare const Avatar: import('vue').DefineSetupFnComponent<AvatarProps, {
|
|
23
|
+
click: (_event?: MouseEvent) => boolean;
|
|
24
|
+
keypress: (_event?: KeyboardEvent) => boolean;
|
|
25
|
+
}, {}, Omit<UIProps, "className" | "image" | import('@lumx/core/js/types').PropsToOverride | "children" | "actions" | "badge"> & {
|
|
19
26
|
class?: import('../../utils/VueToJSX').ClassValue;
|
|
20
27
|
} & {
|
|
21
28
|
/** Image URL. */
|
|
@@ -28,5 +35,8 @@ declare const Avatar: import('vue').DefineSetupFnComponent<AvatarProps, {}, {},
|
|
|
28
35
|
linkAs?: "a" | any;
|
|
29
36
|
/** Props to pass to the thumbnail (minus those already set by the Avatar props). */
|
|
30
37
|
thumbnailProps?: Omit<ThumbnailProps, "image" | "alt" | "size" | "theme" | "aspectRatio">;
|
|
31
|
-
} & {
|
|
38
|
+
} & {
|
|
39
|
+
onClick?: ((_event?: MouseEvent | undefined) => any) | undefined;
|
|
40
|
+
onKeypress?: ((_event?: KeyboardEvent | undefined) => any) | undefined;
|
|
41
|
+
}, import('vue').PublicProps>;
|
|
32
42
|
export default Avatar;
|
|
@@ -23,7 +23,7 @@ declare const ExpansionPanel: import('vue').DefineSetupFnComponent<ExpansionPane
|
|
|
23
23
|
open: (event: MouseEvent) => boolean;
|
|
24
24
|
close: (event: MouseEvent) => boolean;
|
|
25
25
|
toggleOpen: (shouldOpen: boolean, event: MouseEvent) => boolean;
|
|
26
|
-
}, {}, Omit<UIProps, "className" | "footer" | "ref" | "handleClick" | "handleChange" | "handleInput" | "handleKeyPress" | "handleClose" | "handleFocus" | "handleBeforeClick" | "handleAfterClick" | "handleMouseEnter" | "handleMouseLeave" | "handleKeyDown" | "wrapperRef" | "content" | "children" | "IconButton" | "toggleButtonProps" | "handleOpen" | "handleToggleOpen" | "headerProps" | "headerContent" | "dragHandle" | "isChildrenVisible"> & {
|
|
26
|
+
}, {}, Omit<UIProps, "className" | "footer" | "ref" | "handleClick" | "handleChange" | "handleInput" | "handleKeyPress" | "handleClose" | "handleFocus" | "handleBlur" | "handleBeforeClick" | "handleAfterClick" | "handleMouseEnter" | "handleMouseLeave" | "handleKeyDown" | "wrapperRef" | "content" | "children" | "IconButton" | "toggleButtonProps" | "handleOpen" | "handleToggleOpen" | "headerProps" | "headerContent" | "dragHandle" | "isChildrenVisible"> & {
|
|
27
27
|
class?: import('../../utils/VueToJSX').ClassValue;
|
|
28
28
|
} & {
|
|
29
29
|
/** Props to pass to the toggle button (minus those already set by the ExpansionPanel). */
|
package/components/tabs/Tab.d.ts
CHANGED
|
@@ -10,7 +10,17 @@ export { CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS };
|
|
|
10
10
|
* @param props Component props.
|
|
11
11
|
* @return Vue element.
|
|
12
12
|
*/
|
|
13
|
-
declare const
|
|
13
|
+
export declare const emitSchema: {
|
|
14
|
+
focus: (_event?: FocusEvent) => boolean;
|
|
15
|
+
keypress: (_event?: KeyboardEvent) => boolean;
|
|
16
|
+
};
|
|
17
|
+
declare const Tab: import('vue').DefineSetupFnComponent<TabProps, {
|
|
18
|
+
focus: (_event?: FocusEvent) => boolean;
|
|
19
|
+
keypress: (_event?: KeyboardEvent) => boolean;
|
|
20
|
+
}, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children" | TabPropsToOverride> & {
|
|
14
21
|
class?: import('../../utils/VueToJSX').ClassValue;
|
|
15
|
-
} & {
|
|
22
|
+
} & {
|
|
23
|
+
onFocus?: ((_event?: FocusEvent | undefined) => any) | undefined;
|
|
24
|
+
onKeypress?: ((_event?: KeyboardEvent | undefined) => any) | undefined;
|
|
25
|
+
}, import('vue').PublicProps>;
|
|
16
26
|
export default Tab;
|
|
@@ -4,6 +4,8 @@ export type RawInputTextProps = VueToJSXProps<UIProps>;
|
|
|
4
4
|
export declare const emitSchema: {
|
|
5
5
|
change: (value: string, _name?: string, _event?: Event) => boolean;
|
|
6
6
|
input: (value: string, _name?: string, _event?: Event) => boolean;
|
|
7
|
+
focus: (_event?: FocusEvent) => boolean;
|
|
8
|
+
blur: (_event?: FocusEvent) => boolean;
|
|
7
9
|
};
|
|
8
10
|
/**
|
|
9
11
|
* Raw input text component.
|
|
@@ -15,10 +17,14 @@ export declare const emitSchema: {
|
|
|
15
17
|
declare const RawInputText: import('vue').DefineSetupFnComponent<RawInputTextProps, {
|
|
16
18
|
change: (value: string, _name?: string, _event?: Event) => boolean;
|
|
17
19
|
input: (value: string, _name?: string, _event?: Event) => boolean;
|
|
20
|
+
focus: (_event?: FocusEvent) => boolean;
|
|
21
|
+
blur: (_event?: FocusEvent) => boolean;
|
|
18
22
|
}, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
|
|
19
23
|
class?: import('../../utils/VueToJSX').ClassValue;
|
|
20
24
|
} & {
|
|
21
25
|
onInput?: ((value: string, _name?: string | undefined, _event?: Event | undefined) => any) | undefined;
|
|
26
|
+
onBlur?: ((_event?: FocusEvent | undefined) => any) | undefined;
|
|
22
27
|
onChange?: ((value: string, _name?: string | undefined, _event?: Event | undefined) => any) | undefined;
|
|
28
|
+
onFocus?: ((_event?: FocusEvent | undefined) => any) | undefined;
|
|
23
29
|
}, import('vue').PublicProps>;
|
|
24
30
|
export default RawInputText;
|
|
@@ -4,6 +4,8 @@ export type RawInputTextareaProps = VueToJSXProps<UIProps>;
|
|
|
4
4
|
export declare const emitSchema: {
|
|
5
5
|
change: (value: string, _name?: string, _event?: Event) => boolean;
|
|
6
6
|
input: (value: string, _name?: string, _event?: Event) => boolean;
|
|
7
|
+
focus: (_event?: FocusEvent) => boolean;
|
|
8
|
+
blur: (_event?: FocusEvent) => boolean;
|
|
7
9
|
};
|
|
8
10
|
/**
|
|
9
11
|
* Raw input textarea component.
|
|
@@ -15,10 +17,14 @@ export declare const emitSchema: {
|
|
|
15
17
|
declare const RawInputTextarea: import('vue').DefineSetupFnComponent<RawInputTextareaProps, {
|
|
16
18
|
change: (value: string, _name?: string, _event?: Event) => boolean;
|
|
17
19
|
input: (value: string, _name?: string, _event?: Event) => boolean;
|
|
20
|
+
focus: (_event?: FocusEvent) => boolean;
|
|
21
|
+
blur: (_event?: FocusEvent) => boolean;
|
|
18
22
|
}, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
|
|
19
23
|
class?: import('../../utils/VueToJSX').ClassValue;
|
|
20
24
|
} & {
|
|
21
25
|
onInput?: ((value: string, _name?: string | undefined, _event?: Event | undefined) => any) | undefined;
|
|
26
|
+
onBlur?: ((_event?: FocusEvent | undefined) => any) | undefined;
|
|
22
27
|
onChange?: ((value: string, _name?: string | undefined, _event?: Event | undefined) => any) | undefined;
|
|
28
|
+
onFocus?: ((_event?: FocusEvent | undefined) => any) | undefined;
|
|
23
29
|
}, import('vue').PublicProps>;
|
|
24
30
|
export default RawInputTextarea;
|