@mekari/pixel3-autocomplete 0.0.3 → 0.0.5
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
|
@@ -15,7 +15,7 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
15
15
|
modelValue: {
|
|
16
16
|
type: vue.PropType<StringNumberAnyObject | undefined>;
|
|
17
17
|
};
|
|
18
|
-
defaultValue: (
|
|
18
|
+
defaultValue: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
19
19
|
placeholder: {
|
|
20
20
|
type: vue.PropType<string>;
|
|
21
21
|
};
|
|
@@ -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, ("input" | "change" | "enter" | "update:modelValue" | "scrollEnd" | "buttonAction")[], "input" | "change" | "enter" | "update:modelValue" | "scrollEnd" | "buttonAction", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
132
132
|
id: {
|
|
133
133
|
type: vue.PropType<string>;
|
|
134
134
|
default: string;
|
|
@@ -140,7 +140,7 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
140
140
|
modelValue: {
|
|
141
141
|
type: vue.PropType<StringNumberAnyObject | undefined>;
|
|
142
142
|
};
|
|
143
|
-
defaultValue: (
|
|
143
|
+
defaultValue: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
144
144
|
placeholder: {
|
|
145
145
|
type: vue.PropType<string>;
|
|
146
146
|
};
|
|
@@ -254,39 +254,39 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
254
254
|
default: boolean;
|
|
255
255
|
};
|
|
256
256
|
}>> & {
|
|
257
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
258
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
259
257
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
258
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
260
259
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
260
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
261
261
|
onScrollEnd?: ((...args: any[]) => any) | undefined;
|
|
262
262
|
onButtonAction?: ((...args: any[]) => any) | undefined;
|
|
263
263
|
}, {
|
|
264
|
-
id: string;
|
|
265
264
|
data: unknown[];
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
265
|
+
id: string;
|
|
266
|
+
usePortal: boolean;
|
|
267
|
+
isKeepAlive: boolean;
|
|
268
|
+
isAdaptiveWidth: boolean;
|
|
269
269
|
isDisabled: boolean;
|
|
270
|
+
isLoading: boolean;
|
|
271
|
+
isReadOnly: boolean;
|
|
270
272
|
isInvalid: boolean;
|
|
271
273
|
isRequired: boolean;
|
|
272
274
|
isFullWidth: boolean;
|
|
273
|
-
isLoading: boolean;
|
|
274
|
-
isContentLoading: boolean;
|
|
275
275
|
isClearable: boolean;
|
|
276
|
+
keyCode: string[];
|
|
277
|
+
isGroupSuggestions: boolean;
|
|
278
|
+
isInfinityScroll: boolean;
|
|
279
|
+
isManualFilter: boolean;
|
|
280
|
+
labelProp: string;
|
|
281
|
+
valueProp: string;
|
|
282
|
+
isContentLoading: boolean;
|
|
276
283
|
isSearchable: boolean;
|
|
277
284
|
emptyText: string;
|
|
278
285
|
contentLoadingText: string;
|
|
279
|
-
isInfinityScroll: boolean;
|
|
280
|
-
isManualFilter: boolean;
|
|
281
|
-
usePortal: boolean;
|
|
282
286
|
isShowButtonAction: boolean;
|
|
283
287
|
buttonActionText: string;
|
|
284
|
-
isGroupSuggestions: boolean;
|
|
285
288
|
groupKey: string;
|
|
286
|
-
keyCode: string[];
|
|
287
289
|
isRawValue: boolean;
|
|
288
|
-
isKeepAlive: boolean;
|
|
289
|
-
isAdaptiveWidth: boolean;
|
|
290
290
|
}, {}>;
|
|
291
291
|
|
|
292
292
|
export { MpAutocomplete };
|
package/dist/autocomplete.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
15
15
|
modelValue: {
|
|
16
16
|
type: vue.PropType<StringNumberAnyObject | undefined>;
|
|
17
17
|
};
|
|
18
|
-
defaultValue: (
|
|
18
|
+
defaultValue: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
19
19
|
placeholder: {
|
|
20
20
|
type: vue.PropType<string>;
|
|
21
21
|
};
|
|
@@ -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, ("input" | "change" | "enter" | "update:modelValue" | "scrollEnd" | "buttonAction")[], "input" | "change" | "enter" | "update:modelValue" | "scrollEnd" | "buttonAction", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
132
132
|
id: {
|
|
133
133
|
type: vue.PropType<string>;
|
|
134
134
|
default: string;
|
|
@@ -140,7 +140,7 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
140
140
|
modelValue: {
|
|
141
141
|
type: vue.PropType<StringNumberAnyObject | undefined>;
|
|
142
142
|
};
|
|
143
|
-
defaultValue: (
|
|
143
|
+
defaultValue: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
144
144
|
placeholder: {
|
|
145
145
|
type: vue.PropType<string>;
|
|
146
146
|
};
|
|
@@ -254,39 +254,39 @@ declare const MpAutocomplete: vue.DefineComponent<{
|
|
|
254
254
|
default: boolean;
|
|
255
255
|
};
|
|
256
256
|
}>> & {
|
|
257
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
258
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
259
257
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
258
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
260
259
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
260
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
261
261
|
onScrollEnd?: ((...args: any[]) => any) | undefined;
|
|
262
262
|
onButtonAction?: ((...args: any[]) => any) | undefined;
|
|
263
263
|
}, {
|
|
264
|
-
id: string;
|
|
265
264
|
data: unknown[];
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
265
|
+
id: string;
|
|
266
|
+
usePortal: boolean;
|
|
267
|
+
isKeepAlive: boolean;
|
|
268
|
+
isAdaptiveWidth: boolean;
|
|
269
269
|
isDisabled: boolean;
|
|
270
|
+
isLoading: boolean;
|
|
271
|
+
isReadOnly: boolean;
|
|
270
272
|
isInvalid: boolean;
|
|
271
273
|
isRequired: boolean;
|
|
272
274
|
isFullWidth: boolean;
|
|
273
|
-
isLoading: boolean;
|
|
274
|
-
isContentLoading: boolean;
|
|
275
275
|
isClearable: boolean;
|
|
276
|
+
keyCode: string[];
|
|
277
|
+
isGroupSuggestions: boolean;
|
|
278
|
+
isInfinityScroll: boolean;
|
|
279
|
+
isManualFilter: boolean;
|
|
280
|
+
labelProp: string;
|
|
281
|
+
valueProp: string;
|
|
282
|
+
isContentLoading: boolean;
|
|
276
283
|
isSearchable: boolean;
|
|
277
284
|
emptyText: string;
|
|
278
285
|
contentLoadingText: string;
|
|
279
|
-
isInfinityScroll: boolean;
|
|
280
|
-
isManualFilter: boolean;
|
|
281
|
-
usePortal: boolean;
|
|
282
286
|
isShowButtonAction: boolean;
|
|
283
287
|
buttonActionText: string;
|
|
284
|
-
isGroupSuggestions: boolean;
|
|
285
288
|
groupKey: string;
|
|
286
|
-
keyCode: string[];
|
|
287
289
|
isRawValue: boolean;
|
|
288
|
-
isKeepAlive: boolean;
|
|
289
|
-
isAdaptiveWidth: boolean;
|
|
290
290
|
}, {}>;
|
|
291
291
|
|
|
292
292
|
export { MpAutocomplete };
|
|
@@ -22,7 +22,7 @@ declare const autocompleteProps: {
|
|
|
22
22
|
modelValue: {
|
|
23
23
|
type: PropType<StringNumberAnyObject | undefined>;
|
|
24
24
|
};
|
|
25
|
-
defaultValue: (
|
|
25
|
+
defaultValue: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
26
26
|
placeholder: {
|
|
27
27
|
type: PropType<string>;
|
|
28
28
|
};
|
|
@@ -22,7 +22,7 @@ declare const autocompleteProps: {
|
|
|
22
22
|
modelValue: {
|
|
23
23
|
type: PropType<StringNumberAnyObject | undefined>;
|
|
24
24
|
};
|
|
25
|
-
defaultValue: (
|
|
25
|
+
defaultValue: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
26
26
|
placeholder: {
|
|
27
27
|
type: PropType<string>;
|
|
28
28
|
};
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mekari/pixel3-autocomplete",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@mekari/pixel3-styled-system": "0.0.
|
|
11
|
-
"@mekari/pixel3-utils": "0.0.
|
|
12
|
-
"@mekari/pixel3-input": "0.0.
|
|
13
|
-
"@mekari/pixel3-spinner": "0.0.
|
|
14
|
-
"@mekari/pixel3-icon": "0.0.
|
|
15
|
-
"@mekari/pixel3-popover": "0.0.
|
|
16
|
-
"@mekari/pixel3-text": "0.0.
|
|
10
|
+
"@mekari/pixel3-styled-system": "0.0.3",
|
|
11
|
+
"@mekari/pixel3-utils": "0.0.4",
|
|
12
|
+
"@mekari/pixel3-input": "0.0.5",
|
|
13
|
+
"@mekari/pixel3-spinner": "0.0.5",
|
|
14
|
+
"@mekari/pixel3-icon": "0.0.5",
|
|
15
|
+
"@mekari/pixel3-popover": "0.0.5",
|
|
16
|
+
"@mekari/pixel3-text": "0.0.5"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"vue": "^3.
|
|
19
|
+
"vue": "^3.4.9"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"vue": "^3.
|
|
22
|
+
"vue": "^3.4.9"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|