@nixweb/nixloc-ui 0.0.127 → 0.0.128
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 +79 -79
- package/src/App.vue +13 -13
- package/src/component/forms/Button.vue +170 -170
- package/src/component/forms/CheckboxGroup.vue +72 -66
- package/src/component/forms/CheckboxSimple.vue +46 -42
- package/src/component/forms/Color.vue +38 -38
- package/src/component/forms/DateTime.vue +167 -163
- package/src/component/forms/Dropdown.vue +218 -224
- package/src/component/forms/EditorHtml.vue +126 -126
- package/src/component/forms/FileUpload.vue +185 -185
- package/src/component/forms/ImageUpload.vue +12 -4
- package/src/component/forms/IncrementDecrement.vue +101 -0
- package/src/component/forms/InputDecimal.vue +142 -138
- package/src/component/forms/InputNumber.vue +154 -154
- package/src/component/forms/InputPassword.vue +135 -135
- package/src/component/forms/InputText.vue +162 -157
- package/src/component/forms/Modal.vue +65 -65
- package/src/component/forms/RadioGroup.vue +50 -50
- package/src/component/forms/Select.vue +349 -340
- package/src/component/forms/SelectStatic.vue +127 -127
- package/src/component/forms/Slider.vue +18 -18
- package/src/component/forms/TextArea.vue +126 -126
- package/src/component/layout/Alert.vue +92 -92
- package/src/component/layout/Badge.vue +103 -103
- package/src/component/layout/FixedBar.vue +100 -68
- package/src/component/layout/Header.vue +38 -35
- package/src/component/layout/LoadingFullPage.vue +27 -27
- package/src/component/layout/Menu.vue +210 -215
- package/src/component/layout/Molded.vue +28 -27
- package/src/component/layout/Panel.vue +140 -140
- package/src/component/layout/Popover.vue +126 -126
- package/src/component/layout/ScrollBar.vue +42 -42
- package/src/component/layout/Tab.vue +135 -0
- package/src/component/layout/Wizard.vue +211 -211
- package/src/component/rental/DisplayPeriodRent.vue +81 -0
- package/src/component/rental/DisplayTotalization.vue +47 -0
- package/src/component/shared/Collapse.vue +131 -131
- package/src/component/shared/DocumentPreview.vue +1 -1
- package/src/component/shared/DocumentPublic.vue +34 -0
- package/src/component/shared/ExportPDF.vue +116 -116
- package/src/component/shared/HeaderReport.vue +1 -1
- package/src/component/shared/HorizontalFilter.vue +59 -59
- package/src/component/shared/Loading.vue +107 -107
- package/src/component/shared/LoadingMoreButton.vue +23 -23
- package/src/component/shared/Messages.vue +81 -81
- package/src/component/shared/PDFViewer.vue +22 -22
- package/src/component/shared/Pagination.vue +52 -52
- package/src/component/shared/ProgressBar.vue +22 -22
- package/src/component/shared/QueryButton.vue +66 -66
- package/src/component/shared/{BodyReport.vue → Report.vue} +8 -7
- package/src/component/shared/SaveCancel.vue +6 -1
- package/src/component/shared/Search.vue +154 -154
- package/src/component/shared/SelectOption.vue +18 -9
- package/src/component/shared/Table.vue +163 -254
- package/src/component/shared/TableButton.vue +36 -36
- package/src/component/shared/TableDraggable.vue +127 -0
- package/src/component/shared/TableItem.vue +177 -0
- package/src/component/shared/TableTotalization.vue +47 -47
- package/src/component/shared/Tip.vue +42 -42
- package/src/component/shared/Toast.vue +54 -54
- package/src/component/shared/TotalizationReport.vue +59 -0
- package/src/component/shared/VerticalFilter.vue +97 -97
- package/src/component/shared/query-builder/AddRule.vue +181 -181
- package/src/component/shared/query-builder/ConvertToOdata.js +3 -9
- package/src/component/shared/query-builder/DynamicComponent.vue +5 -1
- package/src/component/shared/query-builder/DynamicComponentList.vue +73 -62
- package/src/component/shared/query-builder/QueryBuilder.vue +69 -69
- package/src/component/shared/query-builder/utilities.js +21 -21
- package/src/component/template/ListViewWithDataHandler.vue +260 -238
- package/src/component/template/ReportCreateUpdate.vue +9 -2
- package/src/component/template/ViewTemplateConfiguration.vue +64 -63
- package/src/component/template/ViewTemplateDocumentView.vue +1 -0
- package/src/component/template/ViewTemplateReportPreview.vue +56 -12
- package/src/component/template/ViewTemplateWithSalveCancel.vue +32 -32
- package/src/component/template/ViewTemplateWithTable.vue +56 -56
- package/src/component/value-objects/Contact.vue +7 -0
- package/src/component/value-objects/Person.vue +15 -0
- package/src/config/axios.js +9 -9
- package/src/config/dicas.js +14 -14
- package/src/config/router.js +13 -13
- package/src/config/token.js +14 -14
- package/src/main.js +23 -23
- package/src/store/modules/generic.js +512 -494
- package/src/store/modules/report.js +37 -19
- package/src/store/modules/user.js +3 -0
- package/src/store/modules/validation.js +38 -38
- package/src/store/store.js +13 -13
- package/src/component/shared/query-builder/Totalization.vue +0 -38
package/src/config/token.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export default class Token {
|
|
2
|
-
|
|
3
|
-
tokenHeaders() {
|
|
4
|
-
return {
|
|
5
|
-
"Content-Type": "application/json",
|
|
6
|
-
Authorization: "Bearer " + JSON.parse(sessionStorage.vuex).user.userLogged.token
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
tokenHeadersFormData() {
|
|
10
|
-
return {
|
|
11
|
-
"Content-Type": "multipart/form-data",
|
|
12
|
-
Authorization: "Bearer " + JSON.parse(sessionStorage.vuex).user.userLogged.token
|
|
13
|
-
};
|
|
14
|
-
}
|
|
1
|
+
export default class Token {
|
|
2
|
+
|
|
3
|
+
tokenHeaders() {
|
|
4
|
+
return {
|
|
5
|
+
"Content-Type": "application/json",
|
|
6
|
+
Authorization: "Bearer " + JSON.parse(sessionStorage.vuex).user.userLogged.token
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
tokenHeadersFormData() {
|
|
10
|
+
return {
|
|
11
|
+
"Content-Type": "multipart/form-data",
|
|
12
|
+
Authorization: "Bearer " + JSON.parse(sessionStorage.vuex).user.userLogged.token
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
15
|
}
|
package/src/main.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App.vue'
|
|
3
|
-
import router from './config/router'
|
|
4
|
-
import store from './store/store'
|
|
5
|
-
|
|
6
|
-
import BootstrapVue from 'bootstrap-vue'
|
|
7
|
-
import VueLoading from "vue-loading-template";
|
|
8
|
-
import VueTheMask from 'vue-the-mask'
|
|
9
|
-
|
|
10
|
-
import 'bootstrap/dist/css/bootstrap.css'
|
|
11
|
-
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
|
12
|
-
|
|
13
|
-
Vue.use(BootstrapVue)
|
|
14
|
-
Vue.use(VueLoading)
|
|
15
|
-
Vue.use(VueTheMask)
|
|
16
|
-
|
|
17
|
-
Vue.config.productionTip = false
|
|
18
|
-
|
|
19
|
-
new Vue({
|
|
20
|
-
router,
|
|
21
|
-
store,
|
|
22
|
-
render: h => h(App),
|
|
23
|
-
}).$mount('#app')
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App.vue'
|
|
3
|
+
import router from './config/router'
|
|
4
|
+
import store from './store/store'
|
|
5
|
+
|
|
6
|
+
import BootstrapVue from 'bootstrap-vue'
|
|
7
|
+
import VueLoading from "vue-loading-template";
|
|
8
|
+
import VueTheMask from 'vue-the-mask'
|
|
9
|
+
|
|
10
|
+
import 'bootstrap/dist/css/bootstrap.css'
|
|
11
|
+
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
|
12
|
+
|
|
13
|
+
Vue.use(BootstrapVue)
|
|
14
|
+
Vue.use(VueLoading)
|
|
15
|
+
Vue.use(VueTheMask)
|
|
16
|
+
|
|
17
|
+
Vue.config.productionTip = false
|
|
18
|
+
|
|
19
|
+
new Vue({
|
|
20
|
+
router,
|
|
21
|
+
store,
|
|
22
|
+
render: h => h(App),
|
|
23
|
+
}).$mount('#app')
|