@bildvitta/quasar-ui-asteroid 3.7.0-beta.1 → 3.7.0-beta.3
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/actions/QasActions.vue +1 -1
- package/src/components/actions-menu/QasActionsMenu.vue +111 -64
- package/src/components/actions-menu/QasActionsMenu.yml +11 -14
- package/src/components/btn/QasBtn.vue +16 -1
- package/src/components/btn/QasBtn.yml +8 -0
- package/src/components/btn-dropdown/QasBtnDropdown.vue +120 -0
- package/src/components/btn-dropdown/QasBtnDropdown.yml +42 -0
- package/src/components/delete/QasDelete.vue +15 -101
- package/src/components/dialog/QasDialog.vue +15 -1
- package/src/components/input/QasInput.vue +1 -11
- package/src/components/nested-fields/QasNestedFields.vue +2 -2
- package/src/components/numeric-input/QasNumericInput.vue +0 -1
- package/src/components/numeric-input/QasNumericInput.yml +1 -1
- package/src/components/password-input/QasPasswordInput.vue +22 -10
- package/src/components/password-input/QasPasswordInput.yml +12 -4
- package/src/components/password-strength-checker/QasPasswordStrengthChecker.vue +8 -19
- package/src/components/password-strength-checker/QasPasswordStrengthChecker.yml +10 -10
- package/src/components/table-generator/QasTableGenerator.vue +74 -17
- package/src/components/table-generator/QasTableGenerator.yml +10 -0
- package/src/css/components/button.scss +1 -0
- package/src/css/variables/index.scss +1 -0
- package/src/css/variables/separator.scss +2 -0
- package/src/mixins/password.js +5 -0
- package/src/plugins/delete/Delete.js +89 -0
- package/src/plugins/delete/Delete.yml +71 -0
- package/src/plugins/dialog/Dialog.yml +1 -1
- package/src/plugins/index.js +2 -0
- package/src/vue-plugin.js +5 -0
package/src/vue-plugin.js
CHANGED
|
@@ -9,6 +9,7 @@ import QasBadge from './components/badge/QasBadge.vue'
|
|
|
9
9
|
import QasBox from './components/box/QasBox.vue'
|
|
10
10
|
import QasBreakline from './components/breakline/QasBreakline.vue'
|
|
11
11
|
import QasBtn from './components/btn/QasBtn.vue'
|
|
12
|
+
import QasBtnDropdown from './components/btn-dropdown/QasBtnDropdown.vue'
|
|
12
13
|
import QasCard from './components/card/QasCard.vue'
|
|
13
14
|
import QasCheckboxGroup from './components/checkbox-group/QasCheckboxGroup.vue'
|
|
14
15
|
import QasCopy from './components/copy/QasCopy.vue'
|
|
@@ -60,6 +61,7 @@ import { Notify, Loading, Quasar, Dialog as QuasarDialog } from 'quasar'
|
|
|
60
61
|
|
|
61
62
|
// Plugins
|
|
62
63
|
import {
|
|
64
|
+
Delete,
|
|
63
65
|
Dialog,
|
|
64
66
|
NotifyError,
|
|
65
67
|
NotifySuccess,
|
|
@@ -86,6 +88,7 @@ function install (app) {
|
|
|
86
88
|
app.component('QasBox', QasBox)
|
|
87
89
|
app.component('QasBreakline', QasBreakline)
|
|
88
90
|
app.component('QasBtn', QasBtn)
|
|
91
|
+
app.component('QasBtnDropdown', QasBtnDropdown)
|
|
89
92
|
app.component('QasCard', QasCard)
|
|
90
93
|
app.component('QasCheckboxGroup', QasCheckboxGroup)
|
|
91
94
|
app.component('QasCopy', QasCopy)
|
|
@@ -139,6 +142,7 @@ function install (app) {
|
|
|
139
142
|
}
|
|
140
143
|
|
|
141
144
|
app.config.globalProperties.$qas = {
|
|
145
|
+
delete: params => Delete.call(app.config.globalProperties, params),
|
|
142
146
|
dialog: Dialog,
|
|
143
147
|
error: NotifyError,
|
|
144
148
|
logger: Logger(),
|
|
@@ -164,6 +168,7 @@ export {
|
|
|
164
168
|
QasBox,
|
|
165
169
|
QasBreakline,
|
|
166
170
|
QasBtn,
|
|
171
|
+
QasBtnDropdown,
|
|
167
172
|
QasCard,
|
|
168
173
|
QasCheckboxGroup,
|
|
169
174
|
QasCopy,
|