@mekari/pixel3-autocomplete 0.0.15-dev.0 → 0.0.16-dev.0
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/autocomplete.d.mts
CHANGED
|
@@ -128,7 +128,7 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
128
128
|
type: vue.PropType<boolean>;
|
|
129
129
|
default: boolean;
|
|
130
130
|
};
|
|
131
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("
|
|
131
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("buttonAction" | "input" | "update:modelValue" | "change" | "enter" | "scrollEnd" | "focus" | "clear")[], "buttonAction" | "input" | "update:modelValue" | "change" | "enter" | "scrollEnd" | "focus" | "clear", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
132
132
|
id: {
|
|
133
133
|
type: vue.PropType<string>;
|
|
134
134
|
default: string;
|
|
@@ -254,14 +254,14 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
254
254
|
default: boolean;
|
|
255
255
|
};
|
|
256
256
|
}>> & {
|
|
257
|
-
|
|
258
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
257
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
259
258
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
259
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
260
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
261
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
260
262
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
261
|
-
onScrollEnd?: ((...args: any[]) => any) | undefined;
|
|
262
263
|
onButtonAction?: ((...args: any[]) => any) | undefined;
|
|
263
|
-
|
|
264
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
264
|
+
onScrollEnd?: ((...args: any[]) => any) | undefined;
|
|
265
265
|
}, {
|
|
266
266
|
id: string;
|
|
267
267
|
data: unknown[];
|
package/dist/autocomplete.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
128
128
|
type: vue.PropType<boolean>;
|
|
129
129
|
default: boolean;
|
|
130
130
|
};
|
|
131
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("
|
|
131
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("buttonAction" | "input" | "update:modelValue" | "change" | "enter" | "scrollEnd" | "focus" | "clear")[], "buttonAction" | "input" | "update:modelValue" | "change" | "enter" | "scrollEnd" | "focus" | "clear", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
132
132
|
id: {
|
|
133
133
|
type: vue.PropType<string>;
|
|
134
134
|
default: string;
|
|
@@ -254,14 +254,14 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
254
254
|
default: boolean;
|
|
255
255
|
};
|
|
256
256
|
}>> & {
|
|
257
|
-
|
|
258
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
257
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
259
258
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
259
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
260
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
261
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
260
262
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
261
|
-
onScrollEnd?: ((...args: any[]) => any) | undefined;
|
|
262
263
|
onButtonAction?: ((...args: any[]) => any) | undefined;
|
|
263
|
-
|
|
264
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
264
|
+
onScrollEnd?: ((...args: any[]) => any) | undefined;
|
|
265
265
|
}, {
|
|
266
266
|
id: string;
|
|
267
267
|
data: unknown[];
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mekari/pixel3-autocomplete",
|
|
3
3
|
"description": "Autocomplete component for mekari pixel 3",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.16-dev.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@mekari/pixel3-styled-system": "0.1.1
|
|
11
|
+
"@mekari/pixel3-styled-system": "0.1.1",
|
|
12
12
|
"@mekari/pixel3-utils": "0.0.6",
|
|
13
|
-
"@mekari/pixel3-input": "0.0.
|
|
14
|
-
"@mekari/pixel3-
|
|
15
|
-
"@mekari/pixel3-
|
|
16
|
-
"@mekari/pixel3-popover": "0.0.
|
|
17
|
-
"@mekari/pixel3-text": "0.0.15
|
|
13
|
+
"@mekari/pixel3-input": "0.0.16-dev.0",
|
|
14
|
+
"@mekari/pixel3-spinner": "0.0.16-dev.0",
|
|
15
|
+
"@mekari/pixel3-icon": "0.0.16-dev.0",
|
|
16
|
+
"@mekari/pixel3-popover": "0.0.16-dev.0",
|
|
17
|
+
"@mekari/pixel3-text": "0.0.15"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"vue": "^3.4.9"
|