@nixweb/nixloc-ui 0.0.299 → 0.0.301
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/@nixweb/nixloc-ui/.github/workflows/publish-npm.yml +32 -0
- package/@nixweb/nixloc-ui/README.md +24 -0
- package/@nixweb/nixloc-ui/babel.config.js +5 -0
- package/@nixweb/nixloc-ui/config/dev.env.js +8 -0
- package/@nixweb/nixloc-ui/config/index.js +69 -0
- package/@nixweb/nixloc-ui/config/prod.env.js +5 -0
- package/@nixweb/nixloc-ui/docs/src/component/template/ViewTemplateReportPreview.drawio +210 -0
- package/@nixweb/nixloc-ui/docs/src/store/modulos/relatorio.drawio +37 -0
- package/@nixweb/nixloc-ui/package.json +89 -0
- package/@nixweb/nixloc-ui/public/favicon.ico +0 -0
- package/@nixweb/nixloc-ui/public/image/logo_nixweb.png +0 -0
- package/@nixweb/nixloc-ui/public/index.html +20 -0
- package/@nixweb/nixloc-ui/public/styles/app.css +53 -0
- package/@nixweb/nixloc-ui/src/App.vue +13 -0
- package/@nixweb/nixloc-ui/src/component/forms/Button.vue +163 -0
- package/@nixweb/nixloc-ui/src/component/forms/ButtonFilter.vue +75 -0
- package/@nixweb/nixloc-ui/src/component/forms/ButtonGroup.vue +67 -0
- package/@nixweb/nixloc-ui/src/component/forms/ButtonSub.vue +98 -0
- package/@nixweb/nixloc-ui/src/component/forms/ButtonToggle.vue +77 -0
- package/@nixweb/nixloc-ui/src/component/forms/CheckboxGroup.vue +69 -0
- package/@nixweb/nixloc-ui/src/component/forms/CheckboxServer.vue +192 -0
- package/@nixweb/nixloc-ui/src/component/forms/CheckboxSimple.vue +60 -0
- package/@nixweb/nixloc-ui/src/component/forms/Color.vue +38 -0
- package/@nixweb/nixloc-ui/src/component/forms/DateTime.vue +170 -0
- package/@nixweb/nixloc-ui/src/component/forms/DateYearMonth.vue +193 -0
- package/@nixweb/nixloc-ui/src/component/forms/Dropdown.vue +236 -0
- package/@nixweb/nixloc-ui/src/component/forms/EditorHtml.vue +132 -0
- package/@nixweb/nixloc-ui/src/component/forms/FileUpload.vue +170 -0
- package/@nixweb/nixloc-ui/src/component/forms/ImageUpload.vue +214 -0
- package/@nixweb/nixloc-ui/src/component/forms/IncrementDecrement.vue +148 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputAddressGoogle.vue +171 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputCallToAction.vue +135 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputDecimal.vue +153 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputDecimalDiscount.vue +78 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputNumber.vue +160 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputPassword.vue +148 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputTag.vue +125 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputText.vue +174 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputTextEdit.vue +69 -0
- package/@nixweb/nixloc-ui/src/component/forms/InputWhatsApp.vue +48 -0
- package/@nixweb/nixloc-ui/src/component/forms/Modal.vue +57 -0
- package/@nixweb/nixloc-ui/src/component/forms/RadioGroup.vue +91 -0
- package/@nixweb/nixloc-ui/src/component/forms/Select.vue +378 -0
- package/@nixweb/nixloc-ui/src/component/forms/SelectStatic.vue +198 -0
- package/@nixweb/nixloc-ui/src/component/forms/SideBar.vue +100 -0
- package/@nixweb/nixloc-ui/src/component/forms/Slider.vue +18 -0
- package/@nixweb/nixloc-ui/src/component/forms/TextArea.vue +138 -0
- package/@nixweb/nixloc-ui/src/component/forms/Toggle.vue +72 -0
- package/@nixweb/nixloc-ui/src/component/layout/Account.vue +131 -0
- package/@nixweb/nixloc-ui/src/component/layout/Alert.vue +88 -0
- package/@nixweb/nixloc-ui/src/component/layout/Badge.vue +111 -0
- package/@nixweb/nixloc-ui/src/component/layout/BarFloating.vue +68 -0
- package/@nixweb/nixloc-ui/src/component/layout/FixedBar.vue +103 -0
- package/@nixweb/nixloc-ui/src/component/layout/Gantt.vue +128 -0
- package/@nixweb/nixloc-ui/src/component/layout/Header.vue +56 -0
- package/@nixweb/nixloc-ui/src/component/layout/HideShow.vue +62 -0
- package/@nixweb/nixloc-ui/src/component/layout/IconMolded.vue +59 -0
- package/@nixweb/nixloc-ui/src/component/layout/LoadingFullPage.vue +27 -0
- package/@nixweb/nixloc-ui/src/component/layout/Menu.vue +287 -0
- package/@nixweb/nixloc-ui/src/component/layout/Molded.vue +30 -0
- package/@nixweb/nixloc-ui/src/component/layout/NewAccount.vue +136 -0
- package/@nixweb/nixloc-ui/src/component/layout/NewHeader.vue +60 -0
- package/@nixweb/nixloc-ui/src/component/layout/NewIconMolded.vue +71 -0
- package/@nixweb/nixloc-ui/src/component/layout/NewMenu.vue +456 -0
- package/@nixweb/nixloc-ui/src/component/layout/Panel.vue +185 -0
- package/@nixweb/nixloc-ui/src/component/layout/Popover.vue +126 -0
- package/@nixweb/nixloc-ui/src/component/layout/ScrollBar.vue +57 -0
- package/@nixweb/nixloc-ui/src/component/layout/Tab.vue +135 -0
- package/@nixweb/nixloc-ui/src/component/layout/Tag.vue +97 -0
- package/@nixweb/nixloc-ui/src/component/layout/Wizard.vue +211 -0
- package/@nixweb/nixloc-ui/src/component/rental/DisplayCalculatePeriod.vue +49 -0
- package/@nixweb/nixloc-ui/src/component/rental/DisplayPeriodRent.vue +55 -0
- package/@nixweb/nixloc-ui/src/component/rental/DisplayTotalization.vue +86 -0
- package/@nixweb/nixloc-ui/src/component/report/Fields.vue +109 -0
- package/@nixweb/nixloc-ui/src/component/report/Report.vue +314 -0
- package/@nixweb/nixloc-ui/src/component/report/ReportTable.vue +112 -0
- package/@nixweb/nixloc-ui/src/component/report/Totalization.vue +34 -0
- package/@nixweb/nixloc-ui/src/component/shared/CodeEditor.vue +128 -0
- package/@nixweb/nixloc-ui/src/component/shared/Collapse.vue +131 -0
- package/@nixweb/nixloc-ui/src/component/shared/Confirmation.vue +74 -0
- package/@nixweb/nixloc-ui/src/component/shared/DocumentEditor.vue +99 -0
- package/@nixweb/nixloc-ui/src/component/shared/DocumentPreview.vue +81 -0
- package/@nixweb/nixloc-ui/src/component/shared/DocumentPublic.vue +33 -0
- package/@nixweb/nixloc-ui/src/component/shared/ExportExcel.vue +56 -0
- package/@nixweb/nixloc-ui/src/component/shared/ExportPDF.vue +116 -0
- package/@nixweb/nixloc-ui/src/component/shared/FullCalendar.vue +174 -0
- package/@nixweb/nixloc-ui/src/component/shared/HeaderReport.vue +47 -0
- package/@nixweb/nixloc-ui/src/component/shared/HorizontalFilter.vue +64 -0
- package/@nixweb/nixloc-ui/src/component/shared/ListNotifications.vue +70 -0
- package/@nixweb/nixloc-ui/src/component/shared/Loading.vue +107 -0
- package/@nixweb/nixloc-ui/src/component/shared/LoadingCard.vue +65 -0
- package/@nixweb/nixloc-ui/src/component/shared/LoadingMoreButton.vue +23 -0
- package/@nixweb/nixloc-ui/src/component/shared/Messages.vue +109 -0
- package/@nixweb/nixloc-ui/src/component/shared/PDFViewer.vue +24 -0
- package/@nixweb/nixloc-ui/src/component/shared/Pagination.vue +108 -0
- package/@nixweb/nixloc-ui/src/component/shared/ParameterLegend.vue +169 -0
- package/@nixweb/nixloc-ui/src/component/shared/ProgressBar.vue +25 -0
- package/@nixweb/nixloc-ui/src/component/shared/QueryButton.vue +66 -0
- package/@nixweb/nixloc-ui/src/component/shared/Report.vue +200 -0
- package/@nixweb/nixloc-ui/src/component/shared/SaveCancel.vue +99 -0
- package/@nixweb/nixloc-ui/src/component/shared/Search.vue +174 -0
- package/@nixweb/nixloc-ui/src/component/shared/SelectOption.vue +162 -0
- package/@nixweb/nixloc-ui/src/component/shared/Table.vue +174 -0
- package/@nixweb/nixloc-ui/src/component/shared/TableButton.vue +36 -0
- package/@nixweb/nixloc-ui/src/component/shared/TableDraggable.vue +117 -0
- package/@nixweb/nixloc-ui/src/component/shared/TableImport.vue +93 -0
- package/@nixweb/nixloc-ui/src/component/shared/TableItem.vue +214 -0
- package/@nixweb/nixloc-ui/src/component/shared/TableTotalPerPage.vue +78 -0
- package/@nixweb/nixloc-ui/src/component/shared/TableTotalRecords.vue +44 -0
- package/@nixweb/nixloc-ui/src/component/shared/TableTotalization.vue +47 -0
- package/@nixweb/nixloc-ui/src/component/shared/TimeLine.vue +42 -0
- package/@nixweb/nixloc-ui/src/component/shared/Timer.vue +78 -0
- package/@nixweb/nixloc-ui/src/component/shared/Tip.vue +42 -0
- package/@nixweb/nixloc-ui/src/component/shared/Toast.vue +69 -0
- package/@nixweb/nixloc-ui/src/component/shared/ToggleTheme.vue +128 -0
- package/@nixweb/nixloc-ui/src/component/shared/TotalizationReport.vue +86 -0
- package/@nixweb/nixloc-ui/src/component/shared/VerticalFilter.vue +97 -0
- package/@nixweb/nixloc-ui/src/component/shared/automation/ActivitiesList.vue +44 -0
- package/@nixweb/nixloc-ui/src/component/shared/automation/AddRule.vue +61 -0
- package/@nixweb/nixloc-ui/src/component/shared/automation/AutomationBuilder.vue +27 -0
- package/@nixweb/nixloc-ui/src/component/shared/automation/DynamicComponentList.vue +86 -0
- package/@nixweb/nixloc-ui/src/component/shared/automation/SelectRule.vue +98 -0
- package/@nixweb/nixloc-ui/src/component/shared/automation/components/BillingByRent.vue +98 -0
- package/@nixweb/nixloc-ui/src/component/shared/automation/components/SendEmail.vue +94 -0
- package/@nixweb/nixloc-ui/src/component/shared/file-manager/FileManager.vue +391 -0
- package/@nixweb/nixloc-ui/src/component/shared/filter-builder/FilterBuilder.vue +221 -0
- package/@nixweb/nixloc-ui/src/component/shared/filter-builder/FilterQuery.vue +94 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/AddRule.vue +203 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/ConvertToOdata.js +86 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/DynamicComponent.vue +161 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/DynamicComponentList.vue +70 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/Fields.vue +93 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/QueryBuilder.vue +69 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/Rules.vue +68 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/SelectRule.vue +97 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/Tags.vue +59 -0
- package/@nixweb/nixloc-ui/src/component/shared/query-builder/utilities.js +22 -0
- package/@nixweb/nixloc-ui/src/component/signature/Payment.vue +161 -0
- package/@nixweb/nixloc-ui/src/component/signature/Warning.vue +76 -0
- package/@nixweb/nixloc-ui/src/component/template/ListViewWithDataHandler.vue +429 -0
- package/@nixweb/nixloc-ui/src/component/template/ReportCreateUpdate.vue +110 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateConfiguration.vue +64 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateDocumentView.vue +213 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateImportFile.vue +347 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateReportList.vue +217 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateReportPreview.vue +432 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateSelectOption.vue +46 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateWithSalveCancel.vue +32 -0
- package/@nixweb/nixloc-ui/src/component/template/ViewTemplateWithTable.vue +62 -0
- package/@nixweb/nixloc-ui/src/component/template/model/Report.js +6 -0
- package/@nixweb/nixloc-ui/src/component/training/Course.vue +344 -0
- package/@nixweb/nixloc-ui/src/component/training/CourseView.vue +190 -0
- package/@nixweb/nixloc-ui/src/component/value-objects/Address.js +11 -0
- package/@nixweb/nixloc-ui/src/component/value-objects/Address.vue +157 -0
- package/@nixweb/nixloc-ui/src/component/value-objects/Contact.js +7 -0
- package/@nixweb/nixloc-ui/src/component/value-objects/Contact.vue +106 -0
- package/@nixweb/nixloc-ui/src/component/value-objects/Person.js +10 -0
- package/@nixweb/nixloc-ui/src/component/value-objects/Person.vue +129 -0
- package/@nixweb/nixloc-ui/src/config/axios.js +9 -0
- package/@nixweb/nixloc-ui/src/config/dicas.js +15 -0
- package/@nixweb/nixloc-ui/src/config/router.js +14 -0
- package/@nixweb/nixloc-ui/src/config/token.js +15 -0
- package/@nixweb/nixloc-ui/src/main.js +23 -0
- package/@nixweb/nixloc-ui/src/store/modules/automation.js +31 -0
- package/@nixweb/nixloc-ui/src/store/modules/generic.js +816 -0
- package/@nixweb/nixloc-ui/src/store/modules/report.js +278 -0
- package/@nixweb/nixloc-ui/src/store/modules/user.js +67 -0
- package/@nixweb/nixloc-ui/src/store/modules/util.js +26 -0
- package/@nixweb/nixloc-ui/src/store/modules/validation.js +39 -0
- package/@nixweb/nixloc-ui/src/store/store.js +14 -0
- package/package.json +1 -1
- package/src/component/shared/filter-builder/FilterBuilder.vue +10 -2
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Publish NPM
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- uses: actions/checkout@v2
|
|
11
|
+
- uses: actions/setup-node@v2
|
|
12
|
+
with:
|
|
13
|
+
node-version: 12
|
|
14
|
+
- run: npm ci
|
|
15
|
+
- run: npm test
|
|
16
|
+
|
|
17
|
+
publish-gpr:
|
|
18
|
+
needs: build
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
permissions:
|
|
21
|
+
packages: write
|
|
22
|
+
contents: read
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v2
|
|
25
|
+
- uses: actions/setup-node@v2
|
|
26
|
+
with:
|
|
27
|
+
node-version: 12
|
|
28
|
+
registry-url: https://npm.pkg.github.com/nixweb-sistemas
|
|
29
|
+
- run: npm ci
|
|
30
|
+
- run: npm publish
|
|
31
|
+
env:
|
|
32
|
+
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Nixloc UI
|
|
2
|
+
|
|
3
|
+
## Project setup
|
|
4
|
+
```
|
|
5
|
+
npm install
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
### Compiles and hot-reloads for development
|
|
9
|
+
```
|
|
10
|
+
npm run serve
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Compiles and minifies for production
|
|
14
|
+
```
|
|
15
|
+
npm run build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Lints and fixes files
|
|
19
|
+
```
|
|
20
|
+
npm run lint
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Customize configuration
|
|
24
|
+
See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
// Template version: 1.3.1
|
|
3
|
+
// see http://vuejs-templates.github.io/webpack for documentation.
|
|
4
|
+
|
|
5
|
+
const path = require('path')
|
|
6
|
+
|
|
7
|
+
module.exports = {
|
|
8
|
+
dev: {
|
|
9
|
+
|
|
10
|
+
// Paths
|
|
11
|
+
assetsSubDirectory: 'static',
|
|
12
|
+
assetsPublicPath: '/',
|
|
13
|
+
proxyTable: {},
|
|
14
|
+
|
|
15
|
+
// Various Dev Server settings
|
|
16
|
+
host: 'localhost', // can be overwritten by process.env.HOST
|
|
17
|
+
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
|
18
|
+
autoOpenBrowser: false,
|
|
19
|
+
errorOverlay: true,
|
|
20
|
+
notifyOnErrors: true,
|
|
21
|
+
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Source Maps
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
// https://webpack.js.org/configuration/devtool/#development
|
|
29
|
+
devtool: 'cheap-module-eval-source-map',
|
|
30
|
+
|
|
31
|
+
// If you have problems debugging vue-files in devtools,
|
|
32
|
+
// set this to false - it *may* help
|
|
33
|
+
// https://vue-loader.vuejs.org/en/options.html#cachebusting
|
|
34
|
+
cacheBusting: true,
|
|
35
|
+
|
|
36
|
+
cssSourceMap: true
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
build: {
|
|
40
|
+
// Template for index.html
|
|
41
|
+
index: path.resolve(__dirname, '../dist/index.html'),
|
|
42
|
+
|
|
43
|
+
// Paths
|
|
44
|
+
assetsRoot: path.resolve(__dirname, '../dist'),
|
|
45
|
+
assetsSubDirectory: 'static',
|
|
46
|
+
assetsPublicPath: '/',
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Source Maps
|
|
50
|
+
*/
|
|
51
|
+
|
|
52
|
+
productionSourceMap: true,
|
|
53
|
+
// https://webpack.js.org/configuration/devtool/#production
|
|
54
|
+
devtool: '#source-map',
|
|
55
|
+
|
|
56
|
+
// Gzip off by default as many popular static hosts such as
|
|
57
|
+
// Surge or Netlify already gzip all static assets for you.
|
|
58
|
+
// Before setting to `true`, make sure to:
|
|
59
|
+
// npm install --save-dev compression-webpack-plugin
|
|
60
|
+
productionGzip: false,
|
|
61
|
+
productionGzipExtensions: ['js', 'css'],
|
|
62
|
+
|
|
63
|
+
// Run the build command with an extra argument to
|
|
64
|
+
// View the bundle analyzer report after build finishes:
|
|
65
|
+
// `npm run build --report`
|
|
66
|
+
// Set to `true` or `false` to always turn it on or off
|
|
67
|
+
bundleAnalyzerReport: process.env.npm_config_report
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -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>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<mxfile host="65bd71144e">
|
|
2
|
+
<diagram id="E48Z9MQLlxmhIpPkPNIA" name="Store">
|
|
3
|
+
<mxGraphModel dx="1123" dy="612" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" 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="4" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;fontFamily=Helvetica;fontSize=13;fontColor=#ffffff;fillColor=none;strokeColor=#E81313;strokeWidth=2;" vertex="1" parent="1">
|
|
8
|
+
<mxGeometry x="138" y="25" width="20" height="202" as="geometry"/>
|
|
9
|
+
</mxCell>
|
|
10
|
+
<mxCell id="5" value="<font style="font-size: 19px">state</font>" style="text;strokeColor=none;fillColor=none;html=1;fontSize=24;fontStyle=1;verticalAlign=middle;align=center;fontFamily=Helvetica;fontColor=#000000;" vertex="1" parent="1">
|
|
11
|
+
<mxGeometry x="25" y="103" width="100" height="40" as="geometry"/>
|
|
12
|
+
</mxCell>
|
|
13
|
+
<mxCell id="6" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">relatorio:campo[ ]:&nbsp;</span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><font color="#000000">Campos que poderão conter no relatório, os campos são os mesmos da tabela, os parâmetros aceitos estão no component &lt;tabela&gt;.</font><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">relatorio:filtro[ ]:<span>&nbsp;</span></span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><font color="#000000">Campos que poderão conter no relatório, os campos são os mesmos da tabela.</font><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">campoSelecionado[ ]:<span>&nbsp;</span></span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><font color="#000000">Campos que foram selecionados no componente &lt;Filtro&gt; do &lt;QueryBuilder&gt;.</font><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">filtroSelecionado{ children [ } }:<span>&nbsp;</span></span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><font color="#000000">Filtros selecionados no componente &lt;Filtro&gt; do &lt;QueryBuilder&gt;, o próprio &lt;QueryBuilder&gt; retorna um v-model.</font><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">campoOrdenado{}:<span>&nbsp;</span></span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><font color="#000000">Campo que for ordenado no componente &lt;Filtro&gt; do &lt;QueryBuilder&gt;.</font><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">opcoes:valorInicial [ ]:</span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">opcoes:opcoes[ ]:</span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; color: rgb(232 , 19 , 19) ; font-weight: bold">opcoesValorInicial [ ]:</span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; font-weight: bold"><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; font-weight: bold ; color: rgb(232 , 19 , 19)">consulta [ ]:<span>&nbsp;</span></span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><font color="#000000">Array com a consulta no padrão oData para ser filtrado.</font></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; font-weight: bold ; color: rgb(232 , 19 , 19)"><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; font-weight: bold ; color: rgb(232 , 19 , 19)">resumo [ ]:<span>&nbsp;</span></span><span style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px"><font color="#000000">Array com a resumo no padrão oData.</font><br></span><span style="font-family: &#34;helvetica&#34; ; font-size: 13px ; font-style: normal ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; font-weight: bold ; color: rgb(232 , 19 , 19)">tags [ ]:<span>&nbsp;</span></span><span style="font-family: &#34;helvetica&#34;">Array com as tags que são carregadas no componente &lt;Tags/&gt;</span>" style="text;whiteSpace=wrap;html=1;fontSize=13;fontFamily=Helvetica;fontColor=#000000;" vertex="1" parent="1">
|
|
14
|
+
<mxGeometry x="167" y="31" width="896" height="190" as="geometry"/>
|
|
15
|
+
</mxCell>
|
|
16
|
+
<mxCell id="7" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;fontFamily=Helvetica;fontSize=13;fontColor=#ffffff;fillColor=none;strokeColor=#006600;strokeWidth=2;" vertex="1" parent="1">
|
|
17
|
+
<mxGeometry x="138" y="266" width="20" height="156" as="geometry"/>
|
|
18
|
+
</mxCell>
|
|
19
|
+
<mxCell id="8" value="<font style="font-size: 19px">mutations</font>" style="text;strokeColor=none;fillColor=none;html=1;fontSize=24;fontStyle=1;verticalAlign=middle;align=center;fontFamily=Helvetica;fontColor=#000000;" vertex="1" parent="1">
|
|
20
|
+
<mxGeometry x="27" y="321" width="100" height="40" as="geometry"/>
|
|
21
|
+
</mxCell>
|
|
22
|
+
<mxCell id="9" value="<p style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; margin: 0px 0px 0px 8px ; font-size: 13px"><span data-lucid-type="application/vnd.lucid.text" data-lucid-content="{&#34;t&#34;:&#34;insereRelatorio(): Insere o objeto contendo as informações dos campos e filtros.\natualizaCampoSelecionado(): Insere os campos selecionados que vem do componente &lt;Campo&gt; do &lt;QueryBuilder&gt;.\natualizaFiltroSelecionado(): Insere as informações dos filtros iniciais para carregar no componente &lt;Filtro&gt;, utilizado quando tem um relatório salvo.\natualizaCampoOrdenado(): Insere qual campo está ordenado para efetuar a busca.\natualizaOpcoesValorInicial(): Insere as informações dos campos iniciais para carregar no componente &lt;Campo&gt;, utilizado quando tem um relatório salvo.\nremoveFiltroSelecionado(): Remove o filtro selecionado, utilizado quando uma tag é removida, então precisa atualizar o array de filtro.\natualizaConsultaFiltro(): Monta o array convertendo os filtros no padrão &lt;QueryBuilder&gt; para o formato oData através da classCss converteParaOData(), bem como adiciona no array resumo[ ] caso possua configurado nos parâmetros iniciais. Faz tambem as validações de os dados estão corretos. \n&#34;,&#34;m&#34;:[{&#34;s&#34;:0,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:0,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:19},{&#34;s&#34;:0,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:17},{&#34;s&#34;:0,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:17},{&#34;s&#34;:0,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:17},{&#34;s&#34;:81,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:107},{&#34;s&#34;:81,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:107},{&#34;s&#34;:81,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:107},{&#34;s&#34;:81,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:109},{&#34;s&#34;:188,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:217},{&#34;s&#34;:188,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:215},{&#34;s&#34;:188,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:215},{&#34;s&#34;:188,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:215},{&#34;s&#34;:339,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:362},{&#34;s&#34;:339,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:362},{&#34;s&#34;:339,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:362},{&#34;s&#34;:339,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:364},{&#34;s&#34;:0,&#34;n&#34;:&#34;s&#34;,&#34;v&#34;:19.999999999999996,&#34;e&#34;:992},{&#34;s&#34;:81,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:188,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:418,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:339,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:418,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:446},{&#34;s&#34;:418,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:446},{&#34;s&#34;:418,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:446},{&#34;s&#34;:418,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:448},{&#34;s&#34;:567,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:568},{&#34;s&#34;:567,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:568},{&#34;s&#34;:567,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:568},{&#34;s&#34;:567,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:568},{&#34;s&#34;:568,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:593},{&#34;s&#34;:568,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:593},{&#34;s&#34;:568,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:593},{&#34;s&#34;:568,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:595},{&#34;s&#34;:704,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:730},{&#34;s&#34;:704,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:730},{&#34;s&#34;:704,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:730},{&#34;s&#34;:704,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:730},{&#34;s&#34;:568,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:704,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157}]}"><span style="font-weight: bold ; color: rgb(0 , 138 , 14)">insereRelatorio()</span><span style="color: rgb(0 , 138 , 14)">:</span><font color="#000000"><span>&nbsp;</span></font><font color="#000000">Insere o objeto contendo as informações dos campos e filtros.</font><br><span style="font-weight: bold ; color: rgb(0 , 138 , 14)">atualizaCampoSelecionado()</span><span style="color: rgb(0 , 138 , 14)">:</span><font color="#000000"><span>&nbsp;</span>Insere os campos selecionados que vem do componente &lt;Campo&gt; do &lt;QueryBuilder&gt;.</font><br><span style="font-weight: bold ; color: rgb(0 , 138 , 14)">atualizaFiltroSelecionado()</span><span style="color: rgb(0 , 138 , 14)">:<span>&nbsp;</span></span><font color="#000000">Insere as informações dos filtros iniciais para carregar no componente &lt;Filtro&gt;, utilizado quando tem um relatório salvo.</font><br><span style="font-weight: bold ; color: rgb(0 , 138 , 14)">atualizaCampoOrdenado()</span><span style="color: rgb(0 , 138 , 14)">:<span>&nbsp;</span></span><font color="#000000">Insere qual campo está ordenado para efetuar a busca.</font><br><span style="font-weight: bold ; color: rgb(0 , 138 , 14)">atualizaOpcoesValorInicial()</span><span style="color: rgb(0 , 138 , 14)">:<span>&nbsp;</span></span><font color="#000000">Insere as informações dos campos iniciais para carregar no componente &lt;Campo&gt;, utilizado quando tem um relatório salvo.</font><span style="font-weight: bold ; color: rgb(0 , 138 , 14)"><br></span><span style="font-weight: bold ; color: rgb(0 , 138 , 14)">removeFiltroSelecionado()</span><span style="color: rgb(0 , 138 , 14)">:<span>&nbsp;</span></span><font color="#000000">Remove o filtro selecionado, utilizado quando uma tag é removida, então precisa atualizar o array de filtro.</font><br><span style="color: rgb(0 , 138 , 14) ; font-weight: bold">atualizaConsultaFiltro():<span>&nbsp;</span></span><font color="#000000">Monta o array convertendo os filtros no padrão &lt;QueryBuilder&gt; para o formato oData através da classCss converteParaOData(),&nbsp;</font></span></p><p style="color: rgb(240 , 240 , 240) ; font-family: &#34;helvetica&#34; ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; margin: 0px 0px 0px 8px ; font-size: 13px"><span data-lucid-type="application/vnd.lucid.text" data-lucid-content="{&#34;t&#34;:&#34;insereRelatorio(): Insere o objeto contendo as informações dos campos e filtros.\natualizaCampoSelecionado(): Insere os campos selecionados que vem do componente &lt;Campo&gt; do &lt;QueryBuilder&gt;.\natualizaFiltroSelecionado(): Insere as informações dos filtros iniciais para carregar no componente &lt;Filtro&gt;, utilizado quando tem um relatório salvo.\natualizaCampoOrdenado(): Insere qual campo está ordenado para efetuar a busca.\natualizaOpcoesValorInicial(): Insere as informações dos campos iniciais para carregar no componente &lt;Campo&gt;, utilizado quando tem um relatório salvo.\nremoveFiltroSelecionado(): Remove o filtro selecionado, utilizado quando uma tag é removida, então precisa atualizar o array de filtro.\natualizaConsultaFiltro(): Monta o array convertendo os filtros no padrão &lt;QueryBuilder&gt; para o formato oData através da classCss converteParaOData(), bem como adiciona no array resumo[ ] caso possua configurado nos parâmetros iniciais. Faz tambem as validações de os dados estão corretos. \n&#34;,&#34;m&#34;:[{&#34;s&#34;:0,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:0,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:19},{&#34;s&#34;:0,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:17},{&#34;s&#34;:0,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:17},{&#34;s&#34;:0,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:17},{&#34;s&#34;:81,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:107},{&#34;s&#34;:81,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:107},{&#34;s&#34;:81,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:107},{&#34;s&#34;:81,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:109},{&#34;s&#34;:188,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:217},{&#34;s&#34;:188,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:215},{&#34;s&#34;:188,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:215},{&#34;s&#34;:188,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:215},{&#34;s&#34;:339,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:362},{&#34;s&#34;:339,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:362},{&#34;s&#34;:339,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:362},{&#34;s&#34;:339,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:364},{&#34;s&#34;:0,&#34;n&#34;:&#34;s&#34;,&#34;v&#34;:19.999999999999996,&#34;e&#34;:992},{&#34;s&#34;:81,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:188,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:418,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:339,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:418,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:446},{&#34;s&#34;:418,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:446},{&#34;s&#34;:418,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:446},{&#34;s&#34;:418,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:448},{&#34;s&#34;:567,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:568},{&#34;s&#34;:567,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:568},{&#34;s&#34;:567,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:568},{&#34;s&#34;:567,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:568},{&#34;s&#34;:568,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:593},{&#34;s&#34;:568,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:593},{&#34;s&#34;:568,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:593},{&#34;s&#34;:568,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:595},{&#34;s&#34;:704,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#008a0eff&#34;,&#34;e&#34;:730},{&#34;s&#34;:704,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:730},{&#34;s&#34;:704,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:730},{&#34;s&#34;:704,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:730},{&#34;s&#34;:568,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:704,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157}]}"><font color="#000000">bem como adiciona no array resumo[ ] caso possua configurado nos parâmetros iniciais. Faz tambem as validações de os dados estão corretos.&nbsp;&nbsp;</font></span></p>" style="text;whiteSpace=wrap;html=1;fontSize=19;fontFamily=Helvetica;fontColor=#E81313;" vertex="1" parent="1">
|
|
23
|
+
<mxGeometry x="162" y="273" width="917" height="142" as="geometry"/>
|
|
24
|
+
</mxCell>
|
|
25
|
+
<mxCell id="10" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;fontFamily=Helvetica;fontSize=13;fontColor=#ffffff;fillColor=none;strokeColor=#000099;strokeWidth=2;" vertex="1" parent="1">
|
|
26
|
+
<mxGeometry x="142" y="465" width="20" height="168" as="geometry"/>
|
|
27
|
+
</mxCell>
|
|
28
|
+
<mxCell id="11" value="<font style="font-size: 19px">getters</font>" style="text;strokeColor=none;fillColor=none;html=1;fontSize=24;fontStyle=1;verticalAlign=middle;align=center;fontFamily=Helvetica;fontColor=#000000;" vertex="1" parent="1">
|
|
29
|
+
<mxGeometry x="31" y="520" width="100" height="40" as="geometry"/>
|
|
30
|
+
</mxCell>
|
|
31
|
+
<mxCell id="13" value="<p style="font-family: &#34;helvetica&#34; ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: left ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; margin: 0px 0px 0px 8px ; font-size: 13px"><span data-lucid-type="application/vnd.lucid.text" data-lucid-content="{&#34;t&#34;:&#34;cabecalhoTabela: Verifica os campos da tabela que está marcado como show=true e retorna para ser adicionado no componente &lt;Tabela&gt;.\nopcoes: Verifica os campos da tabela para montar as opções no componente &lt;Filtro&gt;, bem como tambem verifica quais estão marcados como show=true e deixar como check e carregar no valorInicial. \nfiltroObrigatorio: Verifica se foi passado que o relatório tenha algum filtro que seja obrigatório e retorno um true ou false.\nfiltroSelecionado: Verifica se tem algum filtro selecionado que seja válido e adiciona, ou seja se tive algum filtro sem conteúdo não será adicionado. \noDataOrderBy: Pega o objeto que foi carregado no campoOrdenado que vem do &lt;Campo&gt; e monta um pedaço da url oData. \noDataSelect: Verifica os campos que estão selecionados e monta uma string para compor a url do oData..\noDataFilter: Verifica os filtros e monta uma string para compor a url do oData. \ntags: Verifica nos filtros selecionados os tipos de pesquisa para montar o array com as tags formatadas.&#34;,&#34;m&#34;:[{&#34;s&#34;:0,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:0,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:17},{&#34;s&#34;:0,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:18},{&#34;s&#34;:0,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:17},{&#34;s&#34;:0,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:17},{&#34;s&#34;:0,&#34;n&#34;:&#34;s&#34;,&#34;v&#34;:19.999999999999996,&#34;e&#34;:1017},{&#34;s&#34;:136,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:144},{&#34;s&#34;:136,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:144},{&#34;s&#34;:136,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:144},{&#34;s&#34;:136,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:144},{&#34;s&#34;:136,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:330,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:351},{&#34;s&#34;:330,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:351},{&#34;s&#34;:330,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:351},{&#34;s&#34;:330,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:352},{&#34;s&#34;:332,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:460,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:479},{&#34;s&#34;:460,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:479},{&#34;s&#34;:460,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:479},{&#34;s&#34;:460,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:480},{&#34;s&#34;:460,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:613,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:627},{&#34;s&#34;:613,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:627},{&#34;s&#34;:613,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:627},{&#34;s&#34;:613,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:627},{&#34;s&#34;:613,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:727,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:728},{&#34;s&#34;:729,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:742},{&#34;s&#34;:729,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:742},{&#34;s&#34;:729,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:742},{&#34;s&#34;:729,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:742},{&#34;s&#34;:729,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:832,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:844},{&#34;s&#34;:832,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:844},{&#34;s&#34;:832,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:844},{&#34;s&#34;:832,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:845},{&#34;s&#34;:832,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157},{&#34;s&#34;:913,&#34;n&#34;:&#34;fc&#34;,&#34;v&#34;:&#34;Bold&#34;,&#34;e&#34;:919},{&#34;s&#34;:913,&#34;n&#34;:&#34;fid&#34;,&#34;v&#34;:5,&#34;e&#34;:919},{&#34;s&#34;:913,&#34;n&#34;:&#34;b&#34;,&#34;v&#34;:true,&#34;e&#34;:919},{&#34;s&#34;:913,&#34;n&#34;:&#34;c&#34;,&#34;v&#34;:&#34;#1071e5ff&#34;,&#34;e&#34;:919},{&#34;s&#34;:913,&#34;n&#34;:&#34;p&#34;,&#34;v&#34;:1.127450980392157}]}"><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">cabecalhoTabela: </span> <font color="#000000">Verifica os campos da tabela que está marcado como show=true e retorna para ser adicionado no componente &lt;Tabela&gt;.</font><br><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">opcoes: </span><font color="#000000">Verifica os campos da tabela para montar as opções no componente &lt;Filtro&gt;, bem como tambem verifica quais estão marcados como show=true e deixar como check e carregar no valorInicial.</font><span style="color: rgb(16 , 113 , 229) ; font-weight: bold"> <br></span><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">filtroObrigatorio: </span> <font color="#000000">Verifica se foi passado que o relatório tenha algum filtro que seja obrigatório e retorno um true ou false.</font><br><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">filtroSelecionado:</span><font color="#000000"><span style="font-weight: bold"> </span> Verifica se tem algum filtro selecionado que seja válido e adiciona, ou seja se tive algum filtro sem conteúdo não será adicionado. </font><br><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">oDataOrderBy: </span><font color="#000000">Pega o objeto que foi carregado no campoOrdenado que vem do &lt;Campo&gt; e monta um pedaço da url oData. </font><span style="color: rgb(16 , 113 , 229)"> </span><span style="color: rgb(240 , 240 , 240)"><br></span><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">oDataSelect: </span><font color="#000000">Verifica os campos que estão selecionados e monta uma string para compor a url do oData.</font><br><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">oDataFilter:</span><font color="#000000"> Verifica os filtros e monta uma string para compor a url do oData. </font><br><span style="color: rgb(16 , 113 , 229) ; font-weight: bold">tags: </span><font color="#000000">Verifica nos filtros selecionados os tipos de pesquisa para montar o array com as tags formatadas.</font></span><br></p>" style="text;whiteSpace=wrap;html=1;fontSize=19;fontFamily=Helvetica;fontColor=#E81313;" vertex="1" parent="1">
|
|
32
|
+
<mxGeometry x="166" y="472" width="998" height="152" as="geometry"/>
|
|
33
|
+
</mxCell>
|
|
34
|
+
</root>
|
|
35
|
+
</mxGraphModel>
|
|
36
|
+
</diagram>
|
|
37
|
+
</mxfile>
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nixweb/nixloc-ui",
|
|
3
|
+
"version": "0.0.290",
|
|
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
|
+
"@fullcalendar/core": "^5.11.3",
|
|
16
|
+
"@fullcalendar/daygrid": "^5.11.3",
|
|
17
|
+
"@fullcalendar/interaction": "^5.11.3",
|
|
18
|
+
"@fullcalendar/list": "^5.11.3",
|
|
19
|
+
"@fullcalendar/timegrid": "^5.11.3",
|
|
20
|
+
"@fullcalendar/vue": "^5.11.2",
|
|
21
|
+
"axios": "^0.24.0",
|
|
22
|
+
"bootstrap-vue": "^2.0.0-rc.11",
|
|
23
|
+
"core-js": "^3.6.5",
|
|
24
|
+
"frappe-gantt": "^0.6.1",
|
|
25
|
+
"sass-loader": "^10.1.1",
|
|
26
|
+
"timeline-vuejs": "^1.1.7",
|
|
27
|
+
"v-runtime-template": "^1.10.0",
|
|
28
|
+
"vodal": "^2.4.0",
|
|
29
|
+
"vue": "^2.6.11",
|
|
30
|
+
"vue-color": "^2.7.0",
|
|
31
|
+
"vue-currency-filter": "^3.3.0",
|
|
32
|
+
"vue-html2pdf": "^1.8.0",
|
|
33
|
+
"vue-image-crop-upload": "^3.0.3",
|
|
34
|
+
"vue-js-toggle-button": "^1.3.0",
|
|
35
|
+
"vue-json-excel": "^0.3.0",
|
|
36
|
+
"vue-loading-template": "^1.3.0",
|
|
37
|
+
"vue-moment": "^4.0.0",
|
|
38
|
+
"vue-multiselect": "^2.1.0",
|
|
39
|
+
"vue-numeric": "^2.4.1",
|
|
40
|
+
"vue-pdf-app": "^2.1.0",
|
|
41
|
+
"vue-print-nb": "^1.7.5",
|
|
42
|
+
"vue-router": "^3.0.1",
|
|
43
|
+
"vue-simple-progress": "^1.1.1",
|
|
44
|
+
"vue-the-mask": "^0.11.1",
|
|
45
|
+
"vue-toasted": "^1.1.28",
|
|
46
|
+
"vue-toggles": "^1.1.4",
|
|
47
|
+
"vue-upload-file": "^1.1.0",
|
|
48
|
+
"vue2-datepicker": "^2.13.0",
|
|
49
|
+
"vue2-editor": "^2.6.6",
|
|
50
|
+
"vue2-google-maps": "^0.10.7",
|
|
51
|
+
"vuedraggable": "^2.24.3",
|
|
52
|
+
"vuejs-ace-editor": "^1.0.1",
|
|
53
|
+
"vuex": "^3.6.2",
|
|
54
|
+
"vuex-persistedstate": "^4.0.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@vue/cli-plugin-babel": "~4.5.0",
|
|
58
|
+
"@vue/cli-service": "~4.5.0",
|
|
59
|
+
"babel-eslint": "^10.1.0",
|
|
60
|
+
"eslint": "^6.7.2",
|
|
61
|
+
"eslint-plugin-vue": "^6.2.2",
|
|
62
|
+
"script-loader": "^0.7.2",
|
|
63
|
+
"vue-template-compiler": "^2.6.11"
|
|
64
|
+
},
|
|
65
|
+
"eslintConfig": {
|
|
66
|
+
"root": true,
|
|
67
|
+
"env": {
|
|
68
|
+
"node": true
|
|
69
|
+
},
|
|
70
|
+
"extends": [
|
|
71
|
+
"plugin:vue/essential",
|
|
72
|
+
"eslint:recommended"
|
|
73
|
+
],
|
|
74
|
+
"parserOptions": {
|
|
75
|
+
"parser": "babel-eslint"
|
|
76
|
+
},
|
|
77
|
+
"rules": {}
|
|
78
|
+
},
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": "16.14.2",
|
|
81
|
+
"npm": ">= 3.0.0"
|
|
82
|
+
},
|
|
83
|
+
"browserslist": [
|
|
84
|
+
"> 1%",
|
|
85
|
+
"last 2 versions",
|
|
86
|
+
"not dead"
|
|
87
|
+
],
|
|
88
|
+
"main": "babel.config.js"
|
|
89
|
+
}
|