@bildvitta/quasar-ui-asteroid 3.9.0 → 3.10.0-beta.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/package.json +1 -1
- package/src/components/date/QasDate.vue +412 -0
- package/src/components/date/QasDate.yml +69 -0
- package/src/components/date-time-input/QasDateTimeInput.vue +1 -1
- package/src/components/filters/QasFilters.vue +12 -76
- package/src/components/form-view/QasFormView.vue +2 -2
- package/src/components/label/QasLabel.vue +1 -1
- package/src/components/search-box/QasSearchBox.vue +27 -21
- package/src/components/search-input/QasSearchInput.vue +122 -0
- package/src/components/search-input/QasSearchInput.yml +43 -0
- package/src/components/select/QasSelect.vue +20 -20
- package/src/components/select/QasSelect.yml +5 -0
- package/src/components/select-list/QasSelectList.vue +48 -18
- package/src/components/select-list/QasSelectList.yml +20 -10
- package/src/mixins/search-filter.js +64 -28
- package/src/vue-plugin.js +6 -0
package/src/vue-plugin.js
CHANGED
|
@@ -13,12 +13,14 @@ import QasBtnDropdown from './components/btn-dropdown/QasBtnDropdown.vue'
|
|
|
13
13
|
import QasCard from './components/card/QasCard.vue'
|
|
14
14
|
import QasCheckboxGroup from './components/checkbox-group/QasCheckboxGroup.vue'
|
|
15
15
|
import QasCopy from './components/copy/QasCopy.vue'
|
|
16
|
+
import QasDate from './components/date/QasDate.vue'
|
|
16
17
|
import QasDateTimeInput from './components/date-time-input/QasDateTimeInput.vue'
|
|
17
18
|
import QasDebugger from './components/debugger/QasDebugger.vue'
|
|
18
19
|
import QasDelete from './components/delete/QasDelete.vue'
|
|
19
20
|
import QasDialog from './components/dialog/QasDialog.vue'
|
|
20
21
|
import QasDialogRouter from './components/dialog-router/QasDialogRouter.vue'
|
|
21
22
|
import QasField from './components/field/QasField.vue'
|
|
23
|
+
import QasSearchInput from './components/search-input/QasSearchInput.vue'
|
|
22
24
|
import QasFilters from './components/filters/QasFilters.vue'
|
|
23
25
|
import QasFormGenerator from './components/form-generator/QasFormGenerator.vue'
|
|
24
26
|
import QasFormView from './components/form-view/QasFormView.vue'
|
|
@@ -93,12 +95,14 @@ function install (app) {
|
|
|
93
95
|
app.component('QasCard', QasCard)
|
|
94
96
|
app.component('QasCheckboxGroup', QasCheckboxGroup)
|
|
95
97
|
app.component('QasCopy', QasCopy)
|
|
98
|
+
app.component('QasDate', QasDate)
|
|
96
99
|
app.component('QasDateTimeInput', QasDateTimeInput)
|
|
97
100
|
app.component('QasDebugger', QasDebugger)
|
|
98
101
|
app.component('QasDelete', QasDelete)
|
|
99
102
|
app.component('QasDialog', QasDialog)
|
|
100
103
|
app.component('QasDialogRouter', QasDialogRouter)
|
|
101
104
|
app.component('QasField', QasField)
|
|
105
|
+
app.component('QasSearchInput', QasSearchInput)
|
|
102
106
|
app.component('QasFilters', QasFilters)
|
|
103
107
|
app.component('QasFormGenerator', QasFormGenerator)
|
|
104
108
|
app.component('QasFormView', QasFormView)
|
|
@@ -174,12 +178,14 @@ export {
|
|
|
174
178
|
QasCard,
|
|
175
179
|
QasCheckboxGroup,
|
|
176
180
|
QasCopy,
|
|
181
|
+
QasDate,
|
|
177
182
|
QasDateTimeInput,
|
|
178
183
|
QasDebugger,
|
|
179
184
|
QasDelete,
|
|
180
185
|
QasDialog,
|
|
181
186
|
QasDialogRouter,
|
|
182
187
|
QasField,
|
|
188
|
+
QasSearchInput,
|
|
183
189
|
QasFilters,
|
|
184
190
|
QasFormGenerator,
|
|
185
191
|
QasFormView,
|