@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.
- package/docs/src/component/template/ViewTemplateReportPreview.drawio +210 -0
- package/package.json +79 -77
- package/src/App.vue +13 -13
- package/src/component/forms/Button.vue +170 -169
- package/src/component/forms/CheckboxGroup.vue +72 -63
- package/src/component/forms/CheckboxSimple.vue +46 -27
- package/src/component/forms/Color.vue +38 -38
- package/src/component/forms/DateTime.vue +167 -177
- package/src/component/forms/Dropdown.vue +218 -224
- package/src/component/forms/EditorHtml.vue +126 -123
- package/src/component/forms/FileUpload.vue +185 -189
- package/src/component/forms/ImageUpload.vue +230 -0
- package/src/component/forms/IncrementDecrement.vue +101 -0
- package/src/component/forms/InputDecimal.vue +142 -137
- package/src/component/forms/InputNumber.vue +154 -149
- package/src/component/forms/InputPassword.vue +135 -135
- package/src/component/forms/InputText.vue +162 -157
- package/src/component/forms/Modal.vue +65 -60
- package/src/component/forms/RadioGroup.vue +50 -50
- package/src/component/forms/Select.vue +349 -337
- package/src/component/forms/SelectStatic.vue +127 -120
- 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 -214
- package/src/component/layout/Molded.vue +28 -27
- package/src/component/layout/Panel.vue +140 -142
- package/src/component/layout/Popover.vue +126 -126
- package/src/component/layout/ScrollBar.vue +42 -43
- package/src/component/layout/Tab.vue +135 -0
- package/src/component/layout/Tag.vue +3 -3
- package/src/component/layout/Wizard.vue +211 -213
- 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/Confirmation.vue +2 -2
- package/src/component/shared/DocumentEditor.vue +1 -1
- package/src/component/shared/DocumentPreview.vue +1 -1
- package/src/component/shared/DocumentPublic.vue +34 -0
- package/src/component/shared/ExportExcel.vue +1 -8
- package/src/component/shared/ExportPDF.vue +116 -116
- package/src/component/shared/{HeaderPrint.vue → HeaderReport.vue} +4 -4
- 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 -83
- package/src/component/shared/PDFViewer.vue +22 -22
- package/src/component/shared/Pagination.vue +52 -53
- package/src/component/shared/{LegendaParametro.vue → ParameterLegend.vue} +22 -26
- package/src/component/shared/ProgressBar.vue +22 -21
- package/src/component/shared/QueryButton.vue +66 -66
- package/src/component/shared/Report.vue +187 -0
- package/src/component/shared/SaveCancel.vue +26 -5
- package/src/component/shared/Search.vue +154 -154
- package/src/component/shared/SelectOption.vue +146 -0
- package/src/component/shared/Table.vue +163 -243
- 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/TableTotalRecords.vue +9 -10
- 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 -145
- package/src/component/shared/query-builder/AddRule.vue +181 -187
- package/src/component/shared/query-builder/ConvertToOdata.js +34 -43
- package/src/component/shared/query-builder/DynamicComponent.vue +21 -16
- package/src/component/shared/query-builder/DynamicComponentList.vue +73 -0
- package/src/component/shared/query-builder/Fields.vue +29 -63
- package/src/component/shared/query-builder/QueryBuilder.vue +69 -69
- package/src/component/shared/query-builder/Rules.vue +2 -14
- package/src/component/shared/query-builder/SelectRule.vue +15 -15
- package/src/component/shared/query-builder/Tags.vue +24 -8
- package/src/component/shared/query-builder/utilities.js +21 -21
- package/src/component/template/{ListViewWithHandlerData.vue → ListViewWithDataHandler.vue} +260 -231
- package/src/component/template/{AddEditReport.vue → ReportCreateUpdate.vue} +40 -22
- package/src/component/template/ViewTemplateConfiguration.vue +64 -69
- package/src/component/template/ViewTemplateDocumentView.vue +22 -25
- package/src/component/template/ViewTemplateReportList.vue +39 -57
- package/src/component/template/ViewTemplateReportPreview.vue +270 -341
- package/src/component/template/ViewTemplateReportPreviewCOPIASEGURANCA.vue +497 -0
- package/src/component/template/ViewTemplateSelectOption.vue +60 -0
- package/src/component/template/ViewTemplateWithSalveCancel.vue +32 -32
- package/src/component/template/ViewTemplateWithTable.vue +56 -49
- package/src/component/template/model/Report.js +2 -2
- package/src/component/value-objects/Address.js +11 -0
- package/src/component/value-objects/{Endereco.vue → Address.vue} +39 -40
- package/src/component/value-objects/{DadosContato.js → Contact.js} +2 -2
- package/src/component/value-objects/{DadosContato.vue → Contact.vue} +24 -17
- package/src/component/value-objects/Person.js +10 -0
- package/src/component/value-objects/{DadosPessoa.vue → Person.vue} +50 -35
- 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 -488
- package/src/store/modules/report.js +156 -127
- package/src/store/modules/user.js +6 -0
- package/src/store/modules/validation.js +38 -38
- package/src/store/store.js +13 -13
- package/docs/src/component/template/ModeloRelatorioView.drawio +0 -160
- package/src/component/shared/query-builder/ListDynamicComponent.vue +0 -42
- package/src/component/shared/query-builder/Totalization.vue +0 -38
- package/src/component/value-objects/DadosPessoa.js +0 -10
- package/src/component/value-objects/Endereco.js +0 -11
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
<mxfile host="65bd71144e">
|
|
2
|
+
<diagram id="82UZT3qeIvG22-4x18Pj" name="Page-1">
|
|
3
|
+
<mxGraphModel dx="1138" dy="863" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="1200" pageHeight="1920" background="#ffffff" math="0" shadow="0">
|
|
4
|
+
<root>
|
|
5
|
+
<mxCell id="0"/>
|
|
6
|
+
<mxCell id="1" parent="0"/>
|
|
7
|
+
<mxCell id="34" value="" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="1" source="2" target="30" edge="1">
|
|
8
|
+
<mxGeometry relative="1" as="geometry">
|
|
9
|
+
<Array as="points"/>
|
|
10
|
+
</mxGeometry>
|
|
11
|
+
</mxCell>
|
|
12
|
+
<mxCell id="38" value="actions:addReport" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=14;fontColor=#000000;labelBackgroundColor=#FFFFFF;" parent="34" vertex="1" connectable="0">
|
|
13
|
+
<mxGeometry x="-0.0375" relative="1" as="geometry">
|
|
14
|
+
<mxPoint x="178" y="-79" as="offset"/>
|
|
15
|
+
</mxGeometry>
|
|
16
|
+
</mxCell>
|
|
17
|
+
<mxCell id="70" value="getters:oDataFilter" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=16;fontFamily=Helvetica;fontColor=#0000FF;labelBackgroundColor=#FFFFFF;" parent="34" vertex="1" connectable="0">
|
|
18
|
+
<mxGeometry x="-0.589" relative="1" as="geometry">
|
|
19
|
+
<mxPoint x="202" y="-82" as="offset"/>
|
|
20
|
+
</mxGeometry>
|
|
21
|
+
</mxCell>
|
|
22
|
+
<mxCell id="2" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">ViewTemplateReportPreview</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
23
|
+
<mxGeometry x="174" y="179" width="224" height="85" as="geometry"/>
|
|
24
|
+
</mxCell>
|
|
25
|
+
<mxCell id="26" style="edgeStyle=none;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontSize=14;fontColor=#FFFFFF;strokeColor=#000000;" parent="1" source="4" target="24" edge="1">
|
|
26
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
27
|
+
</mxCell>
|
|
28
|
+
<mxCell id="4" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;InitialReport</font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
29
|
+
<mxGeometry x="40.25" y="-150" width="159.5" height="61" as="geometry"/>
|
|
30
|
+
</mxCell>
|
|
31
|
+
<mxCell id="12" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=14;fontColor=#FFFFFF;strokeColor=#000000;" parent="1" source="2" target="10" edge="1">
|
|
32
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
33
|
+
</mxCell>
|
|
34
|
+
<mxCell id="15" value="<span style="background-color: rgb(255 , 255 , 255)"><font color="#000000">props:panel.module</font></span>" style="edgeStyle=none;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontSize=14;fontColor=#FFFFFF;strokeColor=#000000;" parent="1" target="13" edge="1">
|
|
35
|
+
<mxGeometry x="0.2693" relative="1" as="geometry">
|
|
36
|
+
<mxPoint x="399" y="222" as="sourcePoint"/>
|
|
37
|
+
<mxPoint as="offset"/>
|
|
38
|
+
</mxGeometry>
|
|
39
|
+
</mxCell>
|
|
40
|
+
<mxCell id="18" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=14;fontColor=#FFFFFF;strokeColor=#000000;" parent="1" source="2" target="16" edge="1">
|
|
41
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
42
|
+
</mxCell>
|
|
43
|
+
<mxCell id="21" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=14;fontColor=#FFFFFF;strokeColor=#000000;" parent="1" source="2" target="19" edge="1">
|
|
44
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
45
|
+
</mxCell>
|
|
46
|
+
<mxCell id="10" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">ProgressBar</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
47
|
+
<mxGeometry x="544" y="397" width="128" height="59" as="geometry"/>
|
|
48
|
+
</mxCell>
|
|
49
|
+
<mxCell id="76" value="" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=16;fontColor=#000000;strokeColor=#000000;" parent="1" source="13" target="74" edge="1">
|
|
50
|
+
<mxGeometry x="0.1862" y="-33" relative="1" as="geometry">
|
|
51
|
+
<mxPoint y="1" as="offset"/>
|
|
52
|
+
</mxGeometry>
|
|
53
|
+
</mxCell>
|
|
54
|
+
<mxCell id="77" value="actions:postApi" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=14;fontColor=#000000;labelBackgroundColor=#FFFFFF;" parent="76" vertex="1" connectable="0">
|
|
55
|
+
<mxGeometry x="-0.3009" y="-3" relative="1" as="geometry">
|
|
56
|
+
<mxPoint x="25" y="-26" as="offset"/>
|
|
57
|
+
</mxGeometry>
|
|
58
|
+
</mxCell>
|
|
59
|
+
<mxCell id="13" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">ReportCreateUpdate</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
60
|
+
<mxGeometry x="478" y="-58" width="176" height="72" as="geometry"/>
|
|
61
|
+
</mxCell>
|
|
62
|
+
<mxCell id="35" style="html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.7;entryDx=0;entryDy=0;labelBackgroundColor=#FFFFFF;fontSize=14;fontColor=#000000;strokeColor=#000000;shadow=0;sketch=0;" parent="1" source="16" target="30" edge="1">
|
|
63
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
64
|
+
</mxCell>
|
|
65
|
+
<mxCell id="36" value="getters:fields" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=14;fontColor=#000000;labelBackgroundColor=#FFFFFF;" parent="35" vertex="1" connectable="0">
|
|
66
|
+
<mxGeometry x="0.1009" y="-2" relative="1" as="geometry">
|
|
67
|
+
<mxPoint x="30" y="-20" as="offset"/>
|
|
68
|
+
</mxGeometry>
|
|
69
|
+
</mxCell>
|
|
70
|
+
<object label="mutations:updateSelectedFields" placeholders="1" id="39">
|
|
71
|
+
<mxCell style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=14;fontColor=#000000;labelBackgroundColor=#FFFFFF;" parent="35" vertex="1" connectable="0">
|
|
72
|
+
<mxGeometry x="-0.1898" y="-1" relative="1" as="geometry">
|
|
73
|
+
<mxPoint x="-11" y="22" as="offset"/>
|
|
74
|
+
</mxGeometry>
|
|
75
|
+
</mxCell>
|
|
76
|
+
</object>
|
|
77
|
+
<mxCell id="16" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">Fields</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
78
|
+
<mxGeometry x="542" y="222" width="128" height="59" as="geometry"/>
|
|
79
|
+
</mxCell>
|
|
80
|
+
<mxCell id="42" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Helvetica;fontSize=12;fontColor=#ffffff;strokeColor=#000000;" parent="1" source="19" target="40" edge="1">
|
|
81
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
82
|
+
</mxCell>
|
|
83
|
+
<mxCell id="19" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">Rules</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
84
|
+
<mxGeometry x="542" y="305" width="128" height="59" as="geometry"/>
|
|
85
|
+
</mxCell>
|
|
86
|
+
<mxCell id="27" style="edgeStyle=none;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontSize=14;fontColor=#FFFFFF;strokeColor=#000000;" parent="1" source="24" target="2" edge="1">
|
|
87
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
88
|
+
</mxCell>
|
|
89
|
+
<mxCell id="24" value="<p style="margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline"></p><span data-lucid-type="application/vnd.lucid.text" data-lucid-content="{&#34;t&#34;:&#34;&lt;&lt;methods&gt;&gt; obterTodos()&#34;,&#34;m&#34;:[{&#34;s&#34;:0,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:12},{&#34;s&#34;:12,&#34;n&#34;:&#34;s&#34;,&#34;v&#34;:20.22222222222222,&#34;e&#34;:24},{&#34;s&#34;:12,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Regular&#34;,&#34;e&#34;:24},{&#34;s&#34;:12,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:2,&#34;e&#34;:24}]}" style="font-size: 13px"><div style="text-align: center"><span style="font-weight: bold">&lt;&lt;props&gt;&gt;</span></div></span><hr><p style="text-align: center ; margin: 0px 0px 0px 8px ; font-size: 13px">:panel="panel"</p><p style="text-align: center ; margin: 0px 0px 0px 8px ; font-size: 13px">templateList="templateList"</p><p style="text-align: center ; margin: 0px 0px 0px 8px ; font-size: 13px">templateReport="templateReport"</p><p style="text-align: center ; margin: 0px 0px 0px 8px ; font-size: 13px"><br></p>" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;" parent="1" vertex="1">
|
|
90
|
+
<mxGeometry x="12.75" y="-3" width="214.5" height="91.75" as="geometry"/>
|
|
91
|
+
</mxCell>
|
|
92
|
+
<mxCell id="29" style="edgeStyle=none;html=1;exitX=0.474;exitY=0.994;exitDx=0;exitDy=0;fontSize=14;fontColor=#FFFFFF;strokeColor=#000000;exitPerimeter=0;" parent="1" source="28" target="4" edge="1">
|
|
93
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
94
|
+
</mxCell>
|
|
95
|
+
<mxCell id="28" value="<p style="margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline"></p><span data-lucid-type="application/vnd.lucid.text" data-lucid-content="{&#34;t&#34;:&#34;&lt;&lt;methods&gt;&gt; obterTodos()&#34;,&#34;m&#34;:[{&#34;s&#34;:0,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:12},{&#34;s&#34;:12,&#34;n&#34;:&#34;s&#34;,&#34;v&#34;:20.22222222222222,&#34;e&#34;:24},{&#34;s&#34;:12,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Regular&#34;,&#34;e&#34;:24},{&#34;s&#34;:12,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:2,&#34;e&#34;:24}]}" style="font-size: 13px"><div style="text-align: center"><span style="font-weight: bold"><font color="#000000">&lt;&lt;data&gt;&gt;</font></span></div></span><hr><p style="margin: 0px 0px 0px 8px ; font-size: 14px"><font style="font-size: 14px" color="#000000">panel{},</font></p><p style="margin: 0px 0px 0px 8px ; font-size: 14px"><font style="font-size: 14px" color="#000000">templatList{},</font></p><p style="margin: 0px 0px 0px 8px ; font-size: 14px"><font style="font-size: 14px" color="#000000">templateReport{fields[], rules[]}</font></p><p style="text-align: center ; margin: 0px 0px 0px 8px ; font-size: 13px"><br></p><p style="text-align: center ; margin: 0px 0px 0px 8px ; font-size: 13px"><br></p>" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
|
|
96
|
+
<mxGeometry x="21" y="-329" width="209" height="109.62" as="geometry"/>
|
|
97
|
+
</mxCell>
|
|
98
|
+
<mxCell id="55" value="state:selectedRules" style="edgeStyle=none;html=1;exitX=1;exitY=0.7;exitDx=0;exitDy=0;entryX=0.47;entryY=0.02;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="1" source="30" target="53" edge="1">
|
|
99
|
+
<mxGeometry x="-0.4024" relative="1" as="geometry">
|
|
100
|
+
<mxPoint as="offset"/>
|
|
101
|
+
</mxGeometry>
|
|
102
|
+
</mxCell>
|
|
103
|
+
<mxCell id="61" value="mutations: mountFinalQueryFormatOData" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=16;fontFamily=Helvetica;fontColor=#0000FF;labelBackgroundColor=#FFFFFF;" parent="55" vertex="1" connectable="0">
|
|
104
|
+
<mxGeometry x="0.4049" y="1" relative="1" as="geometry">
|
|
105
|
+
<mxPoint x="31" y="12" as="offset"/>
|
|
106
|
+
</mxGeometry>
|
|
107
|
+
</mxCell>
|
|
108
|
+
<mxCell id="43" value="<font style="font-size: 14px ; background-color: rgb(255 , 255 , 255)" color="#000000">state:report { rules [ ]&nbsp; }</font>" style="edgeStyle=none;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;fontFamily=Helvetica;fontSize=12;fontColor=#ffffff;strokeColor=#000000;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="30" target="40" edge="1">
|
|
109
|
+
<mxGeometry x="-0.3053" y="2" relative="1" as="geometry">
|
|
110
|
+
<mxPoint as="offset"/>
|
|
111
|
+
</mxGeometry>
|
|
112
|
+
</mxCell>
|
|
113
|
+
<mxCell id="49" value="props:rules [ ]" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="1" source="40" target="44" edge="1">
|
|
114
|
+
<mxGeometry x="0.1075" y="-2" relative="1" as="geometry">
|
|
115
|
+
<mxPoint as="offset"/>
|
|
116
|
+
</mxGeometry>
|
|
117
|
+
</mxCell>
|
|
118
|
+
<mxCell id="51" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="1" source="40" target="50" edge="1">
|
|
119
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
120
|
+
</mxCell>
|
|
121
|
+
<mxCell id="40" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">QueryBuilder</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
122
|
+
<mxGeometry x="802" y="305" width="146" height="63" as="geometry"/>
|
|
123
|
+
</mxCell>
|
|
124
|
+
<mxCell id="44" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">SelectRules</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
125
|
+
<mxGeometry x="1090" y="451" width="146" height="63" as="geometry"/>
|
|
126
|
+
</mxCell>
|
|
127
|
+
<mxCell id="52" value="mutations:addSelectedRules" style="edgeStyle=none;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=0.85;entryY=0.95;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="1" source="50" target="30" edge="1">
|
|
128
|
+
<mxGeometry x="-0.2495" y="-1" relative="1" as="geometry">
|
|
129
|
+
<mxPoint as="offset"/>
|
|
130
|
+
</mxGeometry>
|
|
131
|
+
</mxCell>
|
|
132
|
+
<mxCell id="54" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="1" source="50" target="53" edge="1">
|
|
133
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
134
|
+
</mxCell>
|
|
135
|
+
<mxCell id="50" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">AddRule</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
136
|
+
<mxGeometry x="1090" y="303" width="146" height="63" as="geometry"/>
|
|
137
|
+
</mxCell>
|
|
138
|
+
<mxCell id="57" style="edgeStyle=none;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=14;fontColor=#000000;strokeColor=#000000;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="53" target="56" edge="1">
|
|
139
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
140
|
+
</mxCell>
|
|
141
|
+
<mxCell id="58" value="props:rule [ ]" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=14;fontFamily=Helvetica;fontColor=#000000;labelBackgroundColor=#FFFFFF;" parent="57" vertex="1" connectable="0">
|
|
142
|
+
<mxGeometry x="-0.1429" relative="1" as="geometry">
|
|
143
|
+
<mxPoint y="1" as="offset"/>
|
|
144
|
+
</mxGeometry>
|
|
145
|
+
</mxCell>
|
|
146
|
+
<mxCell id="53" value="<font><font style="font-size: 14px"><font style="font-size: 14px">&lt;</font></font><font face="consolas, courier new, monospace"><span style="font-size: 14px">DynamicComponentList</span></font><span style="font-size: 14px">/&gt;</span></font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
147
|
+
<mxGeometry x="1338" y="297.5" width="198" height="74" as="geometry"/>
|
|
148
|
+
</mxCell>
|
|
149
|
+
<mxCell id="66" style="edgeStyle=none;shape=connector;rounded=1;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=16;fontColor=#0000FF;endArrow=classic;strokeColor=#000000;" parent="1" source="56" target="62" edge="1">
|
|
150
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
151
|
+
</mxCell>
|
|
152
|
+
<mxCell id="67" style="edgeStyle=none;shape=connector;rounded=1;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=16;fontColor=#0000FF;endArrow=classic;strokeColor=#000000;" parent="1" source="56" target="63" edge="1">
|
|
153
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
154
|
+
</mxCell>
|
|
155
|
+
<mxCell id="68" style="edgeStyle=none;shape=connector;rounded=1;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=16;fontColor=#0000FF;endArrow=classic;strokeColor=#000000;" parent="1" source="56" target="64" edge="1">
|
|
156
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
157
|
+
</mxCell>
|
|
158
|
+
<mxCell id="69" style="edgeStyle=none;shape=connector;rounded=1;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.006;entryY=0.626;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=16;fontColor=#0000FF;endArrow=classic;strokeColor=#000000;" parent="1" source="56" target="65" edge="1">
|
|
159
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
160
|
+
</mxCell>
|
|
161
|
+
<mxCell id="56" value="<font><font style="font-size: 14px"><font style="font-size: 14px">&lt;</font></font><font face="consolas, courier new, monospace"><span style="font-size: 14px">DynamicComponent</span></font><span style="font-size: 14px">/&gt;</span></font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
162
|
+
<mxGeometry x="1660" y="393.5" width="164" height="57.5" as="geometry"/>
|
|
163
|
+
</mxCell>
|
|
164
|
+
<mxCell id="62" value="<font><font style="font-size: 14px"><font style="font-size: 14px">&lt;</font></font><font face="consolas, courier new, monospace"><span style="font-size: 14px">RadioGroup</span></font><span style="font-size: 14px">/&gt;</span></font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
165
|
+
<mxGeometry x="1993" y="193" width="164" height="57.5" as="geometry"/>
|
|
166
|
+
</mxCell>
|
|
167
|
+
<mxCell id="63" value="<font><font style="font-size: 14px"><font style="font-size: 14px">&lt;</font></font><font face="consolas, courier new, monospace"><span style="font-size: 14px">CheckBoxGroup</span></font><span style="font-size: 14px">/&gt;</span></font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
168
|
+
<mxGeometry x="1995" y="283" width="164" height="57.5" as="geometry"/>
|
|
169
|
+
</mxCell>
|
|
170
|
+
<mxCell id="64" value="<font><font style="font-size: 14px"><font style="font-size: 14px">&lt;</font></font><font face="consolas, courier new, monospace"><span style="font-size: 14px">DateTime</span></font><span style="font-size: 14px">/&gt;</span></font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
171
|
+
<mxGeometry x="1995" y="390" width="164" height="57.5" as="geometry"/>
|
|
172
|
+
</mxCell>
|
|
173
|
+
<mxCell id="65" value="<font><font style="font-size: 14px"><font style="font-size: 14px">&lt;</font></font><font face="consolas, courier new, monospace"><span style="font-size: 14px">Select</span></font><span style="font-size: 14px">/&gt;</span></font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
174
|
+
<mxGeometry x="1995" y="503.5" width="164" height="57.5" as="geometry"/>
|
|
175
|
+
</mxCell>
|
|
176
|
+
<mxCell id="72" value="" style="group" parent="1" vertex="1" connectable="0">
|
|
177
|
+
<mxGeometry x="893" y="-51" width="132" height="152" as="geometry"/>
|
|
178
|
+
</mxCell>
|
|
179
|
+
<mxCell id="30" value="" style="shape=datastore;whiteSpace=wrap;html=1;labelPosition=center;verticalLabelPosition=bottom;align=center;verticalAlign=top;labelBackgroundColor=none;fontSize=14;fontColor=#333333;fillColor=#f5f5f5;strokeColor=#666666;" parent="72" vertex="1">
|
|
180
|
+
<mxGeometry width="132" height="152" as="geometry"/>
|
|
181
|
+
</mxCell>
|
|
182
|
+
<mxCell id="71" value="<font color="#000000" style="font-size: 16px">Store:report.js</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="72" vertex="1">
|
|
183
|
+
<mxGeometry x="14" y="75" width="110" height="19" as="geometry"/>
|
|
184
|
+
</mxCell>
|
|
185
|
+
<mxCell id="73" value="" style="group" parent="1" vertex="1" connectable="0">
|
|
186
|
+
<mxGeometry x="793" y="-271" width="132" height="152" as="geometry"/>
|
|
187
|
+
</mxCell>
|
|
188
|
+
<mxCell id="74" value="" style="shape=datastore;whiteSpace=wrap;html=1;labelPosition=center;verticalLabelPosition=bottom;align=center;verticalAlign=top;labelBackgroundColor=none;fontSize=14;fontColor=#333333;fillColor=#f5f5f5;strokeColor=#666666;" parent="73" vertex="1">
|
|
189
|
+
<mxGeometry width="132" height="152" as="geometry"/>
|
|
190
|
+
</mxCell>
|
|
191
|
+
<mxCell id="75" value="<font color="#000000" style="font-size: 16px">Store:generic.js</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="73" vertex="1">
|
|
192
|
+
<mxGeometry x="9" y="75" width="121" height="19" as="geometry"/>
|
|
193
|
+
</mxCell>
|
|
194
|
+
<mxCell id="80" style="edgeStyle=none;html=1;exitX=1;exitY=0.474;exitDx=0;exitDy=0;labelBackgroundColor=#FFFFFF;fontFamily=Helvetica;fontSize=14;fontColor=#000000;strokeColor=#000000;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="75" target="78" edge="1">
|
|
195
|
+
<mxGeometry relative="1" as="geometry">
|
|
196
|
+
<mxPoint x="962" y="-236" as="targetPoint"/>
|
|
197
|
+
</mxGeometry>
|
|
198
|
+
</mxCell>
|
|
199
|
+
<mxCell id="78" value="<font style="font-size: 14px"><font style="font-size: 14px"><font style="font-size: 14px">&lt;<span style="font-family: &#34;consolas&#34; , &#34;courier new&#34; , monospace">ViewTemplateReportList</span></font></font>/&gt;</font>" style="html=1;dropTarget=0;fillColor=#008a00;fontColor=#ffffff;strokeColor=none;rounded=1;" parent="1" vertex="1">
|
|
200
|
+
<mxGeometry x="1143" y="-231" width="224" height="85" as="geometry"/>
|
|
201
|
+
</mxCell>
|
|
202
|
+
<mxCell id="81" value="<font color="#0000cc" style="font-size: 16px">actions:addIInitialReportCustom</font>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=14;fontColor=#000000;labelBackgroundColor=#FFFFFF;" vertex="1" connectable="0" parent="1">
|
|
203
|
+
<mxGeometry x="870.9978490341846" y="42.87588417127821" as="geometry">
|
|
204
|
+
<mxPoint x="-283" y="105" as="offset"/>
|
|
205
|
+
</mxGeometry>
|
|
206
|
+
</mxCell>
|
|
207
|
+
</root>
|
|
208
|
+
</mxGraphModel>
|
|
209
|
+
</diagram>
|
|
210
|
+
</mxfile>
|
package/package.json
CHANGED
|
@@ -1,77 +1,79 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@nixweb/nixloc-ui",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Componentes UI",
|
|
5
|
-
"author": "Fábio Ávila <fabio@nixweb.com.br>",
|
|
6
|
-
"private": false,
|
|
7
|
-
"scripts": {
|
|
8
|
-
"serve": "vue-cli-service serve",
|
|
9
|
-
"build": "vue-cli-service build",
|
|
10
|
-
"lint": "vue-cli-service lint"
|
|
11
|
-
},
|
|
12
|
-
"dependencies": {
|
|
13
|
-
"@babel/polyfill": "^7.12.1",
|
|
14
|
-
"@ckeditor/ckeditor5-vue2": "^2.0.0",
|
|
15
|
-
"axios": "^0.24.0",
|
|
16
|
-
"bootstrap-vue": "^2.0.0-rc.11",
|
|
17
|
-
"core-js": "^3.6.5",
|
|
18
|
-
"sass-loader": "^10.1.1",
|
|
19
|
-
"v-runtime-template": "^1.10.0",
|
|
20
|
-
"vodal": "^2.4.0",
|
|
21
|
-
"vue": "^2.6.11",
|
|
22
|
-
"vue-color": "^2.7.0",
|
|
23
|
-
"vue-currency-filter": "^3.3.0",
|
|
24
|
-
"vue-html2pdf": "^1.8.0",
|
|
25
|
-
"vue-
|
|
26
|
-
"vue-
|
|
27
|
-
"vue-
|
|
28
|
-
"vue-
|
|
29
|
-
"vue-
|
|
30
|
-
"vue-
|
|
31
|
-
"vue-
|
|
32
|
-
"vue-
|
|
33
|
-
"vue-
|
|
34
|
-
"vue-
|
|
35
|
-
"vue-
|
|
36
|
-
"vue-
|
|
37
|
-
"vue-
|
|
38
|
-
"
|
|
39
|
-
"vue2-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"babel
|
|
48
|
-
"
|
|
49
|
-
"eslint
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@nixweb/nixloc-ui",
|
|
3
|
+
"version": "0.0.128",
|
|
4
|
+
"description": "Componentes UI",
|
|
5
|
+
"author": "Fábio Ávila <fabio@nixweb.com.br>",
|
|
6
|
+
"private": false,
|
|
7
|
+
"scripts": {
|
|
8
|
+
"serve": "vue-cli-service serve",
|
|
9
|
+
"build": "vue-cli-service build",
|
|
10
|
+
"lint": "vue-cli-service lint"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@babel/polyfill": "^7.12.1",
|
|
14
|
+
"@ckeditor/ckeditor5-vue2": "^2.0.0",
|
|
15
|
+
"axios": "^0.24.0",
|
|
16
|
+
"bootstrap-vue": "^2.0.0-rc.11",
|
|
17
|
+
"core-js": "^3.6.5",
|
|
18
|
+
"sass-loader": "^10.1.1",
|
|
19
|
+
"v-runtime-template": "^1.10.0",
|
|
20
|
+
"vodal": "^2.4.0",
|
|
21
|
+
"vue": "^2.6.11",
|
|
22
|
+
"vue-color": "^2.7.0",
|
|
23
|
+
"vue-currency-filter": "^3.3.0",
|
|
24
|
+
"vue-html2pdf": "^1.8.0",
|
|
25
|
+
"vue-image-crop-upload": "^3.0.3",
|
|
26
|
+
"vue-js-toggle-button": "^1.3.0",
|
|
27
|
+
"vue-json-excel": "^0.3.0",
|
|
28
|
+
"vue-loading-template": "^1.3.0",
|
|
29
|
+
"vue-moment": "^4.0.0",
|
|
30
|
+
"vue-multiselect": "^2.1.0",
|
|
31
|
+
"vue-numeric": "^2.4.1",
|
|
32
|
+
"vue-print-nb": "^1.7.5",
|
|
33
|
+
"vue-router": "^3.0.1",
|
|
34
|
+
"vue-simple-progress": "^1.1.1",
|
|
35
|
+
"vue-the-mask": "^0.11.1",
|
|
36
|
+
"vue-toasted": "^1.1.28",
|
|
37
|
+
"vue-toggles": "^1.1.4",
|
|
38
|
+
"vue-upload-file": "^1.1.0",
|
|
39
|
+
"vue2-datepicker": "^2.13.0",
|
|
40
|
+
"vue2-editor": "^2.6.6",
|
|
41
|
+
"vuedraggable": "^2.24.3",
|
|
42
|
+
"vuejs-ace-editor": "^1.0.1",
|
|
43
|
+
"vuex": "^3.6.2",
|
|
44
|
+
"vuex-persistedstate": "^4.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@vue/cli-plugin-babel": "~4.5.0",
|
|
48
|
+
"@vue/cli-service": "~4.5.0",
|
|
49
|
+
"babel-eslint": "^10.1.0",
|
|
50
|
+
"eslint": "^6.7.2",
|
|
51
|
+
"eslint-plugin-vue": "^6.2.2",
|
|
52
|
+
"script-loader": "^0.7.2",
|
|
53
|
+
"vue-template-compiler": "^2.6.11"
|
|
54
|
+
},
|
|
55
|
+
"eslintConfig": {
|
|
56
|
+
"root": true,
|
|
57
|
+
"env": {
|
|
58
|
+
"node": true
|
|
59
|
+
},
|
|
60
|
+
"extends": [
|
|
61
|
+
"plugin:vue/essential",
|
|
62
|
+
"eslint:recommended"
|
|
63
|
+
],
|
|
64
|
+
"parserOptions": {
|
|
65
|
+
"parser": "babel-eslint"
|
|
66
|
+
},
|
|
67
|
+
"rules": {}
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": "16.14.2",
|
|
71
|
+
"npm": ">= 3.0.0"
|
|
72
|
+
},
|
|
73
|
+
"browserslist": [
|
|
74
|
+
"> 1%",
|
|
75
|
+
"last 2 versions",
|
|
76
|
+
"not dead"
|
|
77
|
+
],
|
|
78
|
+
"main": "babel.config.js"
|
|
79
|
+
}
|
package/src/App.vue
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="app">
|
|
3
|
-
<router-view :key="$route.fullPath"></router-view>
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
export default {
|
|
9
|
-
name: "App",
|
|
10
|
-
};
|
|
11
|
-
</script>
|
|
12
|
-
|
|
13
|
-
<style></style>
|
|
1
|
+
<template>
|
|
2
|
+
<div id="app">
|
|
3
|
+
<router-view :key="$route.fullPath"></router-view>
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
name: "App",
|
|
10
|
+
};
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<style></style>
|