@afeefa/vue-app 0.0.339 → 0.0.340
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.340
|
package/package.json
CHANGED
|
@@ -19,12 +19,12 @@ import { FormFieldMixin } from '../FormFieldMixin'
|
|
|
19
19
|
import { ComponentWidthMixin } from '../../mixins/ComponentWidthMixin'
|
|
20
20
|
|
|
21
21
|
@Component
|
|
22
|
-
export default class
|
|
22
|
+
export default class FormFieldAutoComplete extends Mixins(FormFieldMixin, ComponentWidthMixin) {
|
|
23
23
|
asyncItems = null
|
|
24
24
|
|
|
25
25
|
created () {
|
|
26
26
|
if (this.fieldHasOptionsRequest()) {
|
|
27
|
-
this.asyncItems = q => this.getSelectOptions({q})
|
|
27
|
+
this.asyncItems = q => this.getSelectOptions({ q })
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
package/src/components/index.js
CHANGED
|
@@ -10,7 +10,7 @@ import FormFieldRadioGroup from './form/fields/FormFieldRadioGroup'
|
|
|
10
10
|
import FormFieldRichTextArea from './form/fields/FormFieldRichTextArea'
|
|
11
11
|
import FormFieldSearchSelect from './form/fields/FormFieldSearchSelect'
|
|
12
12
|
import FormFieldSelect from './form/fields/FormFieldSelect'
|
|
13
|
-
import
|
|
13
|
+
import FormFieldAutoComplete from './form/fields/FormFieldAutoComplete'
|
|
14
14
|
import FormFieldText from './form/fields/FormFieldText'
|
|
15
15
|
import FormFieldTextArea from './form/fields/FormFieldTextArea'
|
|
16
16
|
import FormFieldTime from './form/fields/FormFieldTime'
|
|
@@ -37,7 +37,7 @@ Vue.component('FormFieldDate', FormFieldDate)
|
|
|
37
37
|
Vue.component('FormFieldTime', FormFieldTime)
|
|
38
38
|
Vue.component('FormFieldSearchSelect', FormFieldSearchSelect)
|
|
39
39
|
Vue.component('FormFieldSelect', FormFieldSelect)
|
|
40
|
-
Vue.component('
|
|
40
|
+
Vue.component('FormFieldAutoComplete', FormFieldAutoComplete)
|
|
41
41
|
Vue.component('ListFilterPage', ListFilterPage)
|
|
42
42
|
Vue.component('ListFilterSearch', ListFilterSearch)
|
|
43
43
|
Vue.component('ListFilterSearch2', ListFilterSearch2)
|