@nixweb/nixloc-ui 0.0.125 → 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.
Files changed (111) hide show
  1. package/docs/src/component/template/ViewTemplateReportPreview.drawio +210 -0
  2. package/package.json +79 -77
  3. package/src/App.vue +13 -13
  4. package/src/component/forms/Button.vue +170 -169
  5. package/src/component/forms/CheckboxGroup.vue +72 -63
  6. package/src/component/forms/CheckboxSimple.vue +46 -27
  7. package/src/component/forms/Color.vue +38 -38
  8. package/src/component/forms/DateTime.vue +167 -177
  9. package/src/component/forms/Dropdown.vue +218 -224
  10. package/src/component/forms/EditorHtml.vue +126 -123
  11. package/src/component/forms/FileUpload.vue +185 -189
  12. package/src/component/forms/ImageUpload.vue +230 -0
  13. package/src/component/forms/IncrementDecrement.vue +101 -0
  14. package/src/component/forms/InputDecimal.vue +142 -137
  15. package/src/component/forms/InputNumber.vue +154 -149
  16. package/src/component/forms/InputPassword.vue +135 -135
  17. package/src/component/forms/InputText.vue +162 -157
  18. package/src/component/forms/Modal.vue +65 -60
  19. package/src/component/forms/RadioGroup.vue +50 -50
  20. package/src/component/forms/Select.vue +349 -337
  21. package/src/component/forms/SelectStatic.vue +127 -120
  22. package/src/component/forms/Slider.vue +18 -18
  23. package/src/component/forms/TextArea.vue +126 -126
  24. package/src/component/layout/Alert.vue +92 -92
  25. package/src/component/layout/Badge.vue +103 -103
  26. package/src/component/layout/FixedBar.vue +100 -68
  27. package/src/component/layout/Header.vue +38 -35
  28. package/src/component/layout/LoadingFullPage.vue +27 -27
  29. package/src/component/layout/Menu.vue +210 -214
  30. package/src/component/layout/Molded.vue +28 -27
  31. package/src/component/layout/Panel.vue +140 -142
  32. package/src/component/layout/Popover.vue +126 -126
  33. package/src/component/layout/ScrollBar.vue +42 -43
  34. package/src/component/layout/Tab.vue +135 -0
  35. package/src/component/layout/Tag.vue +3 -3
  36. package/src/component/layout/Wizard.vue +211 -213
  37. package/src/component/rental/DisplayPeriodRent.vue +81 -0
  38. package/src/component/rental/DisplayTotalization.vue +47 -0
  39. package/src/component/shared/Collapse.vue +131 -131
  40. package/src/component/shared/Confirmation.vue +2 -2
  41. package/src/component/shared/DocumentEditor.vue +1 -1
  42. package/src/component/shared/DocumentPreview.vue +1 -1
  43. package/src/component/shared/DocumentPublic.vue +34 -0
  44. package/src/component/shared/ExportExcel.vue +1 -8
  45. package/src/component/shared/ExportPDF.vue +116 -116
  46. package/src/component/shared/{HeaderPrint.vue → HeaderReport.vue} +4 -4
  47. package/src/component/shared/HorizontalFilter.vue +59 -59
  48. package/src/component/shared/Loading.vue +107 -107
  49. package/src/component/shared/LoadingMoreButton.vue +23 -23
  50. package/src/component/shared/Messages.vue +81 -83
  51. package/src/component/shared/PDFViewer.vue +22 -22
  52. package/src/component/shared/Pagination.vue +52 -53
  53. package/src/component/shared/{LegendaParametro.vue → ParameterLegend.vue} +22 -26
  54. package/src/component/shared/ProgressBar.vue +22 -21
  55. package/src/component/shared/QueryButton.vue +66 -66
  56. package/src/component/shared/Report.vue +187 -0
  57. package/src/component/shared/SaveCancel.vue +26 -5
  58. package/src/component/shared/Search.vue +154 -154
  59. package/src/component/shared/SelectOption.vue +146 -0
  60. package/src/component/shared/Table.vue +163 -243
  61. package/src/component/shared/TableButton.vue +36 -36
  62. package/src/component/shared/TableDraggable.vue +127 -0
  63. package/src/component/shared/TableItem.vue +177 -0
  64. package/src/component/shared/TableTotalRecords.vue +9 -10
  65. package/src/component/shared/TableTotalization.vue +47 -47
  66. package/src/component/shared/Tip.vue +42 -42
  67. package/src/component/shared/Toast.vue +54 -54
  68. package/src/component/shared/TotalizationReport.vue +59 -0
  69. package/src/component/shared/VerticalFilter.vue +97 -145
  70. package/src/component/shared/query-builder/AddRule.vue +181 -187
  71. package/src/component/shared/query-builder/ConvertToOdata.js +34 -43
  72. package/src/component/shared/query-builder/DynamicComponent.vue +21 -16
  73. package/src/component/shared/query-builder/DynamicComponentList.vue +73 -0
  74. package/src/component/shared/query-builder/Fields.vue +29 -63
  75. package/src/component/shared/query-builder/QueryBuilder.vue +69 -69
  76. package/src/component/shared/query-builder/Rules.vue +2 -14
  77. package/src/component/shared/query-builder/SelectRule.vue +15 -15
  78. package/src/component/shared/query-builder/Tags.vue +24 -8
  79. package/src/component/shared/query-builder/utilities.js +21 -21
  80. package/src/component/template/{ListViewWithHandlerData.vue → ListViewWithDataHandler.vue} +260 -231
  81. package/src/component/template/{AddEditReport.vue → ReportCreateUpdate.vue} +40 -22
  82. package/src/component/template/ViewTemplateConfiguration.vue +64 -69
  83. package/src/component/template/ViewTemplateDocumentView.vue +22 -25
  84. package/src/component/template/ViewTemplateReportList.vue +39 -57
  85. package/src/component/template/ViewTemplateReportPreview.vue +270 -341
  86. package/src/component/template/ViewTemplateReportPreviewCOPIASEGURANCA.vue +497 -0
  87. package/src/component/template/ViewTemplateSelectOption.vue +60 -0
  88. package/src/component/template/ViewTemplateWithSalveCancel.vue +32 -32
  89. package/src/component/template/ViewTemplateWithTable.vue +56 -49
  90. package/src/component/template/model/Report.js +2 -2
  91. package/src/component/value-objects/Address.js +11 -0
  92. package/src/component/value-objects/{Endereco.vue → Address.vue} +39 -40
  93. package/src/component/value-objects/{DadosContato.js → Contact.js} +2 -2
  94. package/src/component/value-objects/{DadosContato.vue → Contact.vue} +24 -17
  95. package/src/component/value-objects/Person.js +10 -0
  96. package/src/component/value-objects/{DadosPessoa.vue → Person.vue} +50 -35
  97. package/src/config/axios.js +9 -9
  98. package/src/config/dicas.js +14 -14
  99. package/src/config/router.js +13 -13
  100. package/src/config/token.js +14 -14
  101. package/src/main.js +23 -23
  102. package/src/store/modules/generic.js +512 -488
  103. package/src/store/modules/report.js +156 -127
  104. package/src/store/modules/user.js +6 -0
  105. package/src/store/modules/validation.js +38 -38
  106. package/src/store/store.js +13 -13
  107. package/docs/src/component/template/ModeloRelatorioView.drawio +0 -160
  108. package/src/component/shared/query-builder/ListDynamicComponent.vue +0 -42
  109. package/src/component/shared/query-builder/Totalization.vue +0 -38
  110. package/src/component/value-objects/DadosPessoa.js +0 -10
  111. package/src/component/value-objects/Endereco.js +0 -11
@@ -1,177 +1,167 @@
1
- <template>
2
- <div class="form-group">
3
- <label>
4
- <span class="title">{{ title }} </span>
5
- <span class="required" v-if="required">*</span>
6
- <Tip :field="field" :formName="formName" />
7
- </label>
8
- <div class="inner-addon right-addon">
9
- <i
10
- v-if="notifications.length > 0 && formDirty"
11
- class="required glyphicon fas fa-exclamation-triangle"
12
- ></i>
13
- <date-picker
14
- lang="pt-br"
15
- :range="range"
16
- @confirm="confirma"
17
- @change="confirma"
18
- @clear="fechar"
19
- :confirm="confirm"
20
- :confirm-text="confirmText"
21
- :format="format"
22
- value-type="format"
23
- :time-picker-options="{
24
- start: '07:00',
25
- step: '00:30',
26
- end: '23:30',
27
- format: 'HH:mm',
28
- }"
29
- width="100%"
30
- :placeholder="placeholder"
31
- :type="type"
32
- v-model="valor"
33
- :class="{ 'is-invalid': notifications.length > 0 && formDirty }"
34
- ></date-picker>
35
- </div>
36
-
37
- <div v-if="formDirty">
38
- <div v-for="message in notifications" :key="message">
39
- <span class="invalid">{{ message }}</span>
40
- </div>
41
- </div>
42
- </div>
43
- </template>
44
-
45
- <script>
46
- import Tip from "../shared/Tip";
47
- import DatePicker from "vue2-datepicker";
48
-
49
- import { mapState, mapMutations } from "vuex";
50
-
51
- export default {
52
- components: { Tip, DatePicker },
53
- name: "Data",
54
- mixins: [],
55
- props: [
56
- "title",
57
- "field",
58
- "fieldTarget",
59
- "placeholder",
60
- "formName",
61
- "required",
62
- "format",
63
- "type",
64
- "value",
65
- "range",
66
- "confirm",
67
- "confirmText",
68
- ],
69
- /* props: {
70
- title: String,
71
- field: String,
72
- fieldTarget: String,
73
- placeholder: String,
74
- formName: String,
75
- required: Boolean,
76
- format: String,
77
- type: String,
78
- value: String,
79
- range: Boolean,
80
- confirm: Boolean,
81
- confirmText: String,
82
- },*/
83
- data() {
84
- return {
85
- notifications: [],
86
- formDirty: false,
87
- valor: "",
88
- };
89
- },
90
- created() {
91
- this.validate();
92
- this.valor = this.value;
93
- },
94
- methods: {
95
- ...mapMutations("validation", [
96
- "addValidation",
97
- "removeValidation",
98
- "updateFormDirty",
99
- ]),
100
- ...mapMutations("generic", ["addFilter"]),
101
- validate() {
102
- this.notifications = [];
103
-
104
- if (this.required && this.valor.length == 0) {
105
- var message = `${this.title} não pode ser vazio!`;
106
- this.notifications.push(message);
107
- }
108
- },
109
- confirma() {
110
- if (this.range) {
111
- let obj = {
112
- fieldTarget: this.fieldTarget,
113
- valor: { inicio: this.valor[0], fim: this.valor[1] },
114
- };
115
- this.addFilter(obj);
116
- }
117
- },
118
- fechar() {
119
- let obj = {
120
- fieldTarget: this.fieldTarget,
121
- valor: { inicio: "", fim: "" },
122
- };
123
- this.addFilter(obj);
124
- },
125
- },
126
- computed: {
127
- ...mapState("validation", ["resetForm", "validations"]),
128
- },
129
- watch: {
130
- valor() {
131
- this.validate();
132
- this.formDirty = true;
133
- this.updateFormDirty(true);
134
- this.$emit("input", this.valor);
135
- },
136
- value() {
137
- this.valor = this.value;
138
- },
139
- notifications() {
140
- let self = this;
141
- this.notifications.forEach(function (notification) {
142
- let obj = {
143
- key: self.field + "&" + self.formName,
144
- formName: self.formName,
145
- notification: notification,
146
- };
147
- self.addValidation(obj);
148
- });
149
-
150
- if (this.notifications.length == 0) {
151
- let obj = {
152
- key: self.field + "&" + self.formName,
153
- formName: self.formName,
154
- };
155
- self.removeValidation(obj);
156
- }
157
- },
158
- resetForm: {
159
- handler(form) {
160
- if (form.nome == this.formName) this.formDirty = false;
161
- },
162
- deep: true,
163
- },
164
- },
165
- };
166
- </script>
167
-
168
- <style scoped>
169
- .success {
170
- color: #94aa2a;
171
- font-size: 14px;
172
- }
173
- .invalid {
174
- color: #f0134d;
175
- font-size: 14px;
176
- }
177
- </style>
1
+ <template>
2
+ <div class="form-group">
3
+ <label>
4
+ <span class="title">{{ title }} </span>
5
+ <span class="required" v-if="required">*</span>
6
+ <Tip :field="field" :formName="formName" />
7
+ </label>
8
+ <div class="inner-addon right-addon">
9
+ <i
10
+ v-if="notifications.length > 0 && formDirty"
11
+ class="required glyphicon fas fa-exclamation-triangle"
12
+ ></i>
13
+ <date-picker
14
+ lang="pt-br"
15
+ :range="range"
16
+ @confirm="executeConfirm"
17
+ @change="executeConfirm"
18
+ @clear="close"
19
+ :confirm="confirm"
20
+ :confirm-text="confirmText"
21
+ :format="format"
22
+ value-type="format"
23
+ :time-picker-options="{
24
+ start: '07:00',
25
+ step: '00:30',
26
+ end: '23:30',
27
+ format: 'HH:mm',
28
+ }"
29
+ width="100%"
30
+ :placeholder="placeholder"
31
+ :type="type"
32
+ v-model="valueLocal"
33
+ :class="{ 'is-invalid': notifications.length > 0 && formDirty }"
34
+ ></date-picker>
35
+ </div>
36
+
37
+ <div v-if="formDirty">
38
+ <div v-for="message in notifications" :key="message">
39
+ <span class="invalid">{{ message }}</span>
40
+ </div>
41
+ </div>
42
+ </div>
43
+ </template>
44
+
45
+ <script>
46
+ import Tip from "../shared/Tip";
47
+ import DatePicker from "vue2-datepicker";
48
+
49
+ import { mapState, mapMutations } from "vuex";
50
+
51
+ export default {
52
+ components: { Tip, DatePicker },
53
+ name: "Data",
54
+ mixins: [],
55
+ props: [
56
+ "title",
57
+ "field",
58
+ "fieldTarget",
59
+ "placeholder",
60
+ "formName",
61
+ "required",
62
+ "format",
63
+ "type",
64
+ "value",
65
+ "range",
66
+ "confirm",
67
+ "confirmText",
68
+ "markFormDirty",
69
+ ],
70
+ data() {
71
+ return {
72
+ notifications: [],
73
+ formDirty: false,
74
+ valueLocal: "",
75
+ markFormDirtyLocal: false,
76
+ };
77
+ },
78
+ created() {
79
+ this.validate();
80
+ this.valueLocal = this.value;
81
+
82
+ if (this.markFormDirty == undefined) this.markFormDirtyLocal = true;
83
+ },
84
+ methods: {
85
+ ...mapMutations("validation", [
86
+ "addValidation",
87
+ "removeValidation",
88
+ "updateFormDirty",
89
+ ]),
90
+ ...mapMutations("generic", ["addFilter"]),
91
+ validate() {
92
+ this.notifications = [];
93
+
94
+ if (this.required && this.valueLocal.length == 0) {
95
+ var message = `${this.title} não pode ser vazio!`;
96
+ this.notifications.push(message);
97
+ }
98
+ },
99
+ executeConfirm() {
100
+ if (this.range) {
101
+ let obj = {
102
+ fieldTarget: this.fieldTarget,
103
+ valueLocal: { start: this.valueLocal[0], end: this.valueLocal[1] },
104
+ };
105
+ this.addFilter(obj);
106
+ }
107
+ },
108
+ close() {
109
+ let obj = {
110
+ fieldTarget: this.fieldTarget,
111
+ valueLocal: { start: "", end: "" },
112
+ };
113
+ this.addFilter(obj);
114
+ },
115
+ },
116
+ computed: {
117
+ ...mapState("validation", ["resetForm", "validations"]),
118
+ },
119
+ watch: {
120
+ valueLocal() {
121
+ this.validate();
122
+ this.formDirty = true;
123
+ if (this.markFormDirtyLocal) this.updateFormDirty(true);
124
+ this.$emit("input", this.valueLocal);
125
+ },
126
+ value() {
127
+ this.valueLocal = this.value;
128
+ },
129
+ notifications() {
130
+ let self = this;
131
+ this.notifications.forEach(function (notification) {
132
+ let obj = {
133
+ key: self.field + "&" + self.formName,
134
+ formName: self.formName,
135
+ notification: notification,
136
+ };
137
+ self.addValidation(obj);
138
+ });
139
+
140
+ if (this.notifications.length == 0) {
141
+ let obj = {
142
+ key: self.field + "&" + self.formName,
143
+ formName: self.formName,
144
+ };
145
+ self.removeValidation(obj);
146
+ }
147
+ },
148
+ resetForm: {
149
+ handler(form) {
150
+ if (form.name == this.formName) this.formDirty = false;
151
+ },
152
+ deep: true,
153
+ },
154
+ },
155
+ };
156
+ </script>
157
+
158
+ <style scoped>
159
+ .success {
160
+ color: #94aa2a;
161
+ font-size: 14px;
162
+ }
163
+ .invalid {
164
+ color: #f0134d;
165
+ font-size: 14px;
166
+ }
167
+ </style>