@qikdev/vue-ui 0.0.4 → 0.1.2
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.js +36 -8
- package/src/content/browser.vue +510 -161
- package/src/content/render/field.vue +8 -0
- package/src/content/render/group.vue +6 -6
- package/src/filter/FilterBuilder.vue +2 -1
- package/src/filter/FilterCondition.vue +46 -8
- package/src/filter/FilterRule.vue +3 -1
- package/src/form/field.vue +6 -0
- package/src/form/getDefaultValue.js +2 -0
- package/src/form/inputs/group.vue +6 -6
- package/src/form/inputs/html.vue +39 -0
- package/src/form/inputs/select.vue +18 -0
- package/src/layout/flex-row.vue +1 -1
- package/src/layout/flex-spacer.vue +1 -0
- package/src/layout/tab.vue +34 -0
- package/src/layout/tabset.vue +72 -0
- package/src/mixins/RememberScroll.js +30 -0
- package/src/modal/ContentModal.vue +34 -25
- package/src/modal/Modal.vue +2 -1
- package/src/services/device.js +211 -0
- package/src/services/selection.js +37 -12
- package/src/table/Table.vue +60 -13
- package/src/table/TableCell.vue +80 -31
- package/src/table/TableRow.vue +8 -20
- package/src/table/cells/Button.vue +56 -0
- package/src/table/cells/Thumbnail.vue +2 -1
- package/src/table/cells/Value.vue +46 -0
- package/src/ui/image.vue +2 -2
- package/src/ui/list-item.vue +6 -0
- package/src/ui/menu.vue +16 -4
- package/src/ui/pager.vue +156 -0
- package/src/version.js +1 -1
package/package.json
CHANGED
package/src/components.js
CHANGED
|
@@ -18,6 +18,12 @@ export { default as PanelBody } from './layout/panel-body.vue';
|
|
|
18
18
|
export { default as PanelHeader } from './layout/panel-header.vue';
|
|
19
19
|
export { default as PanelFooter } from './layout/panel-footer.vue';
|
|
20
20
|
|
|
21
|
+
|
|
22
|
+
export { default as UXTabset } from './layout/tabset.vue';
|
|
23
|
+
export { default as UXTab } from './layout/tab.vue';
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
21
27
|
export { default as UXButton } from './ui/button.vue';
|
|
22
28
|
export { default as UXCheckbox } from './ui/checkbox.vue';
|
|
23
29
|
export { default as UXSwitch } from './ui/switch.vue';
|
|
@@ -44,14 +50,20 @@ export { default as ContentBrowser } from './content/browser.vue';
|
|
|
44
50
|
|
|
45
51
|
////////////////////////////////////////////
|
|
46
52
|
|
|
53
|
+
//Mixins
|
|
54
|
+
export { default as RememberScrollMixin } from './mixins/RememberScroll.js';
|
|
55
|
+
|
|
56
|
+
////////////////////////////////////////////
|
|
57
|
+
|
|
58
|
+
export { default as ModalMixin } from './modal/ModalMixin.js';
|
|
47
59
|
export { default as QikModal } from './modal/Modal.vue';
|
|
48
60
|
export { default as QikConfirmModal } from './modal/ConfirmModal.vue';
|
|
49
61
|
export { default as QikOptionsModal } from './modal/OptionsModal.vue';
|
|
50
62
|
export { default as QikPromptModal } from './modal/PromptModal.vue';
|
|
51
63
|
export { default as QikContentModal } from './modal/ContentModal.vue';
|
|
52
64
|
|
|
53
|
-
|
|
54
65
|
//Services
|
|
66
|
+
export { default as Device } from './services/device.js';
|
|
55
67
|
export { default as Selection } from './services/selection.js';
|
|
56
68
|
|
|
57
69
|
////////////////////////////////////////////
|
|
@@ -69,6 +81,10 @@ import PanelBody from './layout/panel-body.vue';
|
|
|
69
81
|
import PanelHeader from './layout/panel-header.vue';
|
|
70
82
|
import PanelFooter from './layout/panel-footer.vue';
|
|
71
83
|
|
|
84
|
+
|
|
85
|
+
import UXTabset from './layout/tabset.vue';
|
|
86
|
+
import UXTab from './layout/tab.vue';
|
|
87
|
+
|
|
72
88
|
import UXButton from './ui/button.vue';
|
|
73
89
|
import UXSwitch from './ui/switch.vue';
|
|
74
90
|
import UXCheckbox from './ui/checkbox.vue';
|
|
@@ -78,6 +94,12 @@ import UXImage from './ui/image.vue';
|
|
|
78
94
|
import UXLink from './ui/link.vue';
|
|
79
95
|
import UXList from './ui/list.vue';
|
|
80
96
|
import UXListItem from './ui/list-item.vue';
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
81
103
|
import Spinner from './ui/spinner.vue';
|
|
82
104
|
import ProgressBar from './ui/progressbar.vue';
|
|
83
105
|
|
|
@@ -88,6 +110,8 @@ import UXRender from './content/render/render.vue';
|
|
|
88
110
|
import UXRenderField from './content/render/field.vue';
|
|
89
111
|
|
|
90
112
|
|
|
113
|
+
//Services
|
|
114
|
+
|
|
91
115
|
//Modals
|
|
92
116
|
import QikModal from './modal/Modal.vue';
|
|
93
117
|
import QikConfirmModal from './modal/ConfirmModal.vue';
|
|
@@ -103,10 +127,10 @@ const defaultComponents = {
|
|
|
103
127
|
FlexCell,
|
|
104
128
|
FlexSpacer,
|
|
105
129
|
FlexRow,
|
|
106
|
-
Panel,
|
|
107
|
-
PanelBody,
|
|
108
|
-
PanelHeader,
|
|
109
|
-
PanelFooter,
|
|
130
|
+
UxPanel:Panel,
|
|
131
|
+
UxPanelBody:PanelBody,
|
|
132
|
+
UxPanelHeader:PanelHeader,
|
|
133
|
+
UxPanelFooter:PanelFooter,
|
|
110
134
|
UxList: UXList,
|
|
111
135
|
UxListItem: UXListItem,
|
|
112
136
|
UxForm: UXForm,
|
|
@@ -114,12 +138,14 @@ const defaultComponents = {
|
|
|
114
138
|
UxRender: UXRender,
|
|
115
139
|
UxRenderField: UXRenderField,
|
|
116
140
|
UxIcon: UXIcon,
|
|
117
|
-
UxMenu:UXMenu,
|
|
118
|
-
UxImage:UXImage,
|
|
141
|
+
UxMenu: UXMenu,
|
|
142
|
+
UxImage: UXImage,
|
|
119
143
|
UxButton: UXButton,
|
|
120
144
|
UxCheckbox: UXCheckbox,
|
|
121
145
|
UxSwitch: UXSwitch,
|
|
122
146
|
UxLink: UXLink,
|
|
147
|
+
UxTabset: UXTabset,
|
|
148
|
+
UxTab: UXTab,
|
|
123
149
|
Spinner,
|
|
124
150
|
ProgressBar,
|
|
125
151
|
QikModal,
|
|
@@ -133,6 +159,8 @@ export default {
|
|
|
133
159
|
install(Vue, qik) {
|
|
134
160
|
console.log(versionName)
|
|
135
161
|
|
|
162
|
+
|
|
163
|
+
|
|
136
164
|
//////////////////////////////
|
|
137
165
|
|
|
138
166
|
//Create an array for our modal stack
|
|
@@ -200,7 +228,7 @@ export default {
|
|
|
200
228
|
options = options || {};
|
|
201
229
|
|
|
202
230
|
options.title = title;
|
|
203
|
-
|
|
231
|
+
|
|
204
232
|
return qik.modal({
|
|
205
233
|
component: QikConfirmModal,
|
|
206
234
|
options,
|