@sankhyalabs/ezui 1.2.0-beta.8 → 2.0.0
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/dist/cjs/{ApplicationUtils-2ac1b73e.js → ApplicationUtils-edc62c5c.js} +4 -1
- package/dist/cjs/CheckMode-ecb90b87.js +7 -0
- package/dist/cjs/{DialogType-a1e288e6.js → DialogType-aa435c52.js} +1 -0
- package/dist/cjs/ez-actions-button.cjs.entry.js +68 -17
- package/dist/cjs/ez-application.cjs.entry.js +1 -1
- package/dist/cjs/ez-button.cjs.entry.js +13 -11
- package/dist/cjs/ez-calendar.cjs.entry.js +5 -5
- package/dist/cjs/ez-card-item.cjs.entry.js +1 -1
- package/dist/cjs/ez-check.cjs.entry.js +11 -9
- package/dist/cjs/ez-chip.cjs.entry.js +17 -7
- package/dist/cjs/ez-collapsible-box.cjs.entry.js +85 -7
- package/dist/cjs/ez-combo-box.cjs.entry.js +51 -20
- package/dist/cjs/ez-date-input.cjs.entry.js +13 -18
- package/dist/cjs/ez-date-time-input.cjs.entry.js +12 -17
- package/dist/cjs/ez-dialog.cjs.entry.js +43 -8
- package/dist/cjs/ez-filter-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-form.cjs.entry.js +99 -486
- package/dist/cjs/ez-grid-config.cjs.entry.js +8 -9
- package/dist/cjs/ez-grid.cjs.entry.js +1073 -1168
- package/dist/cjs/ez-icon.cjs.entry.js +3 -3
- package/dist/cjs/ez-list.cjs.entry.js +2 -4
- package/dist/cjs/ez-loading-bar.cjs.entry.js +1 -1
- package/dist/cjs/ez-modal-container.cjs.entry.js +58 -0
- package/dist/cjs/ez-modal.cjs.entry.js +1 -1
- package/dist/cjs/ez-number-input.cjs.entry.js +4 -4
- package/dist/cjs/ez-popover.cjs.entry.js +6 -6
- package/dist/cjs/ez-popup.cjs.entry.js +8 -4
- package/dist/cjs/ez-radio-button.cjs.entry.js +3 -3
- package/dist/cjs/ez-scroller.cjs.entry.js +2 -2
- package/dist/cjs/ez-search.cjs.entry.js +1 -1
- package/dist/cjs/ez-select-box.cjs.entry.js +1 -1
- package/dist/cjs/ez-tabselector.cjs.entry.js +8 -7
- package/dist/cjs/ez-text-area.cjs.entry.js +7 -7
- package/dist/cjs/ez-text-edit.cjs.entry.js +103 -0
- package/dist/cjs/ez-text-input.cjs.entry.js +14 -4
- package/dist/cjs/ez-time-input.cjs.entry.js +7 -7
- package/dist/cjs/ez-toast.cjs.entry.js +2 -2
- package/dist/cjs/ez-upload.cjs.entry.js +4 -4
- package/dist/cjs/ez-view-stack.cjs.entry.js +10 -7
- package/dist/cjs/ezui.cjs.js +4 -112
- package/dist/cjs/loader.cjs.js +2 -18
- package/dist/collection/collection-manifest.json +2 -0
- package/dist/collection/components/ez-actions-button/ez-actions-button.css +49 -20
- package/dist/collection/components/ez-actions-button/ez-actions-button.js +219 -23
- package/dist/collection/components/ez-button/ez-button.css +0 -6
- package/dist/collection/components/ez-button/ez-button.js +11 -9
- package/dist/collection/components/ez-calendar/ez-calendar.css +17 -20
- package/dist/collection/components/ez-check/CheckMode.js +5 -0
- package/dist/collection/components/ez-check/ez-check.css +23 -24
- package/dist/collection/components/ez-check/ez-check.js +10 -8
- package/dist/collection/components/ez-chip/ez-chip.css +4 -2
- package/dist/collection/components/ez-chip/ez-chip.js +16 -6
- package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css +16 -0
- package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.js +226 -7
- package/dist/collection/components/ez-combo-box/ez-combo-box.css +1 -22
- package/dist/collection/components/ez-combo-box/ez-combo-box.js +51 -20
- package/dist/collection/components/ez-date-input/ez-date-input.js +8 -13
- package/dist/collection/components/ez-date-time-input/ez-date-time-input.js +8 -13
- package/dist/collection/components/ez-dialog/DialogType.js +1 -0
- package/dist/collection/components/ez-dialog/ez-dialog.css +19 -25
- package/dist/collection/components/ez-dialog/ez-dialog.js +41 -6
- package/dist/collection/components/ez-form/DataBinder.js +1 -0
- package/dist/collection/components/ez-form/ez-form.js +22 -13
- package/dist/collection/components/ez-form/fieldbuilder/FieldBuilder.js +3 -3
- package/dist/collection/components/ez-form/fieldbuilder/tpl/CheckBox.tpl.js +2 -1
- package/dist/collection/components/ez-form/fieldbuilder/tpl/DateInput.tpl.js +4 -4
- package/dist/collection/components/ez-form/structure/FormSheetMetadata.js +25 -15
- package/dist/collection/components/ez-grid/controller/DataUnitBridge.js +3 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +51 -15
- package/dist/collection/components/ez-grid/controller/ag-grid/components/cellRenderer.js +31 -0
- package/dist/collection/components/ez-grid/ez-grid.js +40 -3
- package/dist/collection/components/ez-grid/subcomponents/ez-grid-config/ez-grid-config.css +38 -27
- package/dist/collection/components/ez-grid/subcomponents/ez-grid-config/ez-grid-config.js +1 -2
- package/dist/collection/components/ez-grid/subcomponents/ez-select-box/ez-select-box.js +5 -4
- package/dist/collection/components/ez-list/ez-list.css +12 -4
- package/dist/collection/components/ez-modal-container/ez-modal-container.css +38 -0
- package/dist/collection/components/ez-modal-container/ez-modal-container.js +190 -0
- package/dist/collection/components/ez-modal-container/index.js +2 -0
- package/dist/collection/components/ez-modal-container/modal-action.js +8 -0
- package/dist/collection/components/ez-modal-container/modal-button-status.js +7 -0
- package/dist/collection/components/ez-popover/ez-popover.css +1 -1
- package/dist/collection/components/ez-popup/ez-popup.css +6 -1
- package/dist/collection/components/ez-popup/ez-popup.js +26 -4
- package/dist/collection/components/ez-radio-button/ez-radio-button.css +16 -5
- package/dist/collection/components/ez-radio-button/ez-radio-button.js +1 -1
- package/dist/collection/components/ez-scroller/ez-scroller.css +3 -2
- package/dist/collection/components/ez-search/ez-search.js +6 -6
- package/dist/collection/components/ez-tabselector/ez-tabselector.css +10 -1
- package/dist/collection/components/ez-tabselector/ez-tabselector.js +7 -3
- package/dist/collection/components/ez-text-area/ez-text-area.css +6 -3
- package/dist/collection/components/ez-text-area/ez-text-area.js +5 -5
- package/dist/collection/components/ez-text-edit/ez-text-edit.css +19 -0
- package/dist/collection/components/ez-text-edit/ez-text-edit.js +188 -0
- package/dist/collection/components/ez-text-input/ez-text-input.css +18 -2
- package/dist/collection/components/ez-text-input/ez-text-input.js +28 -0
- package/dist/collection/components/ez-toast/ez-toast.css +1 -1
- package/dist/collection/components/ez-upload/ez-upload.css +1 -1
- package/dist/collection/components/ez-view-stack/ez-view-stack.js +12 -6
- package/dist/collection/utils/ApplicationUtils.js +3 -0
- package/dist/collection/utils/index.js +1 -0
- package/dist/custom-elements/index.d.ts +12 -0
- package/dist/custom-elements/index.js +1595 -4005
- package/dist/{ezui/ApplicationUtils-30a69eb0.js → esm/ApplicationUtils-205ac4bc.js} +4 -2
- package/dist/esm/CheckMode-bdb2ec19.js +7 -0
- package/dist/esm/{DialogType-72afa679.js → DialogType-4059dc4d.js} +1 -0
- package/dist/esm/ez-actions-button.entry.js +68 -17
- package/dist/esm/ez-application.entry.js +1 -1
- package/dist/esm/ez-button.entry.js +13 -11
- package/dist/esm/ez-calendar.entry.js +3 -3
- package/dist/esm/ez-card-item.entry.js +1 -1
- package/dist/esm/ez-check.entry.js +11 -9
- package/dist/esm/ez-chip.entry.js +17 -7
- package/dist/esm/ez-collapsible-box.entry.js +85 -7
- package/dist/esm/ez-combo-box.entry.js +48 -17
- package/dist/esm/ez-date-input.entry.js +10 -15
- package/dist/esm/ez-date-time-input.entry.js +10 -15
- package/dist/esm/ez-dialog.entry.js +43 -8
- package/dist/esm/ez-filter-input.entry.js +1 -1
- package/dist/esm/ez-form.entry.js +65 -452
- package/dist/esm/ez-grid-config.entry.js +6 -7
- package/dist/esm/ez-grid.entry.js +1039 -1134
- package/dist/esm/ez-icon.entry.js +2 -2
- package/dist/esm/ez-list.entry.js +2 -4
- package/dist/esm/ez-loading-bar.entry.js +1 -1
- package/dist/esm/ez-modal-container.entry.js +54 -0
- package/dist/esm/ez-modal.entry.js +1 -1
- package/dist/esm/ez-number-input.entry.js +2 -2
- package/dist/esm/ez-popover.entry.js +3 -3
- package/dist/esm/ez-popup.entry.js +8 -4
- package/dist/esm/ez-radio-button.entry.js +3 -3
- package/dist/esm/ez-scroller.entry.js +2 -2
- package/dist/esm/ez-search.entry.js +1 -1
- package/dist/esm/ez-select-box.entry.js +1 -1
- package/dist/esm/ez-tabselector.entry.js +8 -7
- package/dist/esm/ez-text-area.entry.js +7 -7
- package/dist/esm/ez-text-edit.entry.js +99 -0
- package/dist/esm/ez-text-input.entry.js +13 -3
- package/dist/esm/ez-time-input.entry.js +2 -2
- package/dist/esm/ez-toast.entry.js +2 -2
- package/dist/esm/ez-upload.entry.js +4 -4
- package/dist/esm/ez-view-stack.entry.js +10 -7
- package/dist/esm/ezui.js +4 -112
- package/dist/esm/loader.js +2 -18
- package/dist/ezui/ezui.esm.js +1 -125
- package/dist/ezui/index.esm.js +0 -1
- package/dist/ezui/p-04a41a44.entry.js +1 -0
- package/dist/ezui/p-0b44cf1c.js +1 -0
- package/dist/ezui/p-0c7203d5.entry.js +1 -0
- package/dist/ezui/p-2213da1f.entry.js +1 -0
- package/dist/ezui/p-2c6398b3.entry.js +1 -0
- package/dist/ezui/p-2ccad880.entry.js +1 -0
- package/dist/ezui/p-333d79c4.entry.js +1 -0
- package/dist/ezui/p-3987f8d8.entry.js +1 -0
- package/dist/ezui/{p-81eb2738.entry.js → p-42c6493e.entry.js} +1 -1
- package/dist/ezui/{p-b4ad3b15.entry.js → p-482c3dd8.entry.js} +1 -1
- package/dist/ezui/p-5bdb1a41.entry.js +1 -0
- package/dist/ezui/{p-b2cf7db2.entry.js → p-63d567cc.entry.js} +1 -1
- package/dist/ezui/p-659616e4.entry.js +1 -0
- package/dist/ezui/p-6608b9a5.entry.js +1 -0
- package/dist/ezui/p-77ec47ac.entry.js +1 -0
- package/dist/ezui/p-9b9ebf95.entry.js +1 -0
- package/dist/ezui/{p-88bfdea4.entry.js → p-ae5af8f9.entry.js} +1 -1
- package/dist/ezui/p-b853763b.js +1 -0
- package/dist/ezui/p-be06251d.entry.js +1 -0
- package/dist/ezui/{p-e7d03a0d.entry.js → p-bffae598.entry.js} +1 -1
- package/dist/ezui/p-cd4677d4.entry.js +1 -0
- package/dist/ezui/p-cfcc23e6.entry.js +1 -0
- package/dist/ezui/p-dfcf55e0.entry.js +1 -0
- package/dist/ezui/p-e1148f5c.js +1 -0
- package/dist/ezui/p-e1f2b5da.entry.js +1 -0
- package/dist/ezui/p-e230bfd2.entry.js +1 -0
- package/dist/ezui/{p-867aac16.entry.js → p-e3ee814c.entry.js} +1 -1
- package/dist/ezui/p-e697ffd5.entry.js +1 -0
- package/dist/ezui/{p-4eb273f8.entry.js → p-efa32bcc.entry.js} +1 -1
- package/dist/types/components/ez-actions-button/ez-actions-button.d.ts +42 -9
- package/dist/types/components/ez-check/CheckMode.d.ts +4 -0
- package/dist/types/components/ez-chip/ez-chip.d.ts +2 -1
- package/dist/types/components/ez-collapsible-box/ez-collapsible-box.d.ts +46 -1
- package/dist/types/components/ez-combo-box/ez-combo-box.d.ts +15 -5
- package/dist/types/components/ez-date-input/ez-date-input.d.ts +0 -1
- package/dist/types/components/ez-date-time-input/ez-date-time-input.d.ts +0 -1
- package/dist/types/components/ez-dialog/DialogType.d.ts +1 -0
- package/dist/types/components/ez-dialog/ez-dialog.d.ts +3 -0
- package/dist/types/components/ez-form/DataBinder.d.ts +2 -2
- package/dist/types/components/ez-form/ez-form.d.ts +21 -11
- package/dist/types/components/ez-form/fieldbuilder/tpl/CheckBox.tpl.d.ts +3 -3
- package/dist/types/components/ez-form/fieldbuilder/tpl/DateInput.tpl.d.ts +4 -2
- package/dist/types/components/ez-form/fieldbuilder/tpl/NumberInput.tpl.d.ts +2 -5
- package/dist/types/components/ez-form/structure/FormSheetMetadata.d.ts +3 -3
- package/dist/types/components/ez-grid/controller/EzGridController.d.ts +11 -0
- package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +4 -1
- package/dist/types/components/ez-grid/controller/ag-grid/components/cellRenderer.d.ts +9 -0
- package/dist/types/components/ez-grid/ez-grid.d.ts +8 -3
- package/dist/types/components/ez-grid/subcomponents/ez-select-box/ez-select-box.d.ts +2 -6
- package/dist/types/components/ez-modal-container/ez-modal-container.d.ts +47 -0
- package/dist/types/components/ez-modal-container/index.d.ts +2 -0
- package/dist/types/components/ez-modal-container/modal-action.d.ts +7 -0
- package/dist/types/components/ez-modal-container/modal-button-status.d.ts +6 -0
- package/dist/types/components/ez-popup/ez-popup.d.ts +4 -0
- package/dist/types/components/ez-search/ez-search.d.ts +3 -3
- package/dist/types/components/ez-tabselector/ez-tabselector.d.ts +2 -0
- package/dist/types/components/ez-text-edit/ez-text-edit.d.ts +39 -0
- package/dist/types/components/ez-text-input/ez-text-input.d.ts +5 -0
- package/dist/types/components/ez-view-stack/ez-view-stack.d.ts +5 -1
- package/dist/types/components.d.ts +274 -28
- package/dist/types/utils/ApplicationUtils.d.ts +1 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/package.json +5 -5
- package/react/components.d.ts +2 -0
- package/react/components.js +2 -0
- package/react/components.js.map +1 -1
- package/dist/cjs/ApplicationUtils-475b50d9.js +0 -63
- package/dist/cjs/app-globals-3a1e7e63.js +0 -5
- package/dist/cjs/css-shim-3bfdba4f.js +0 -6
- package/dist/cjs/dom-8ac1ad03.js +0 -75
- package/dist/cjs/index-2ec1da82.js +0 -2307
- package/dist/cjs/index-55178184.js +0 -6
- package/dist/cjs/index-d9c5cb88.js +0 -3068
- package/dist/cjs/shadow-css-41d9783d.js +0 -390
- package/dist/esm/ApplicationUtils-30a69eb0.js +0 -61
- package/dist/esm/ApplicationUtils-a4a76132.js +0 -60
- package/dist/esm/app-globals-0f993ce5.js +0 -3
- package/dist/esm/css-shim-20dbffa5.js +0 -4
- package/dist/esm/dom-c5ed0ba5.js +0 -73
- package/dist/esm/index-1e9d524f.js +0 -3031
- package/dist/esm/index-b96183c8.js +0 -2295
- package/dist/esm/index-f32470b5.js +0 -3
- package/dist/esm/shadow-css-8c625855.js +0 -388
- package/dist/ezui/CSSVarsUtils-00f67f32.js +0 -70
- package/dist/ezui/DialogType-72afa679.js +0 -8
- package/dist/ezui/app-globals-0f993ce5.js +0 -3
- package/dist/ezui/css-shim-20dbffa5.js +0 -4
- package/dist/ezui/dom-c5ed0ba5.js +0 -73
- package/dist/ezui/ez-actions-button.entry.js +0 -98
- package/dist/ezui/ez-application.entry.js +0 -22
- package/dist/ezui/ez-button.entry.js +0 -73
- package/dist/ezui/ez-calendar.entry.js +0 -219
- package/dist/ezui/ez-card-item.entry.js +0 -40
- package/dist/ezui/ez-check.entry.js +0 -72
- package/dist/ezui/ez-chip.entry.js +0 -97
- package/dist/ezui/ez-collapsible-box.entry.js +0 -57
- package/dist/ezui/ez-combo-box.entry.js +0 -439
- package/dist/ezui/ez-date-input.entry.js +0 -159
- package/dist/ezui/ez-date-time-input.entry.js +0 -214
- package/dist/ezui/ez-dialog.entry.js +0 -108
- package/dist/ezui/ez-filter-input.entry.js +0 -75
- package/dist/ezui/ez-form.entry.js +0 -1395
- package/dist/ezui/ez-grid-config.entry.js +0 -433
- package/dist/ezui/ez-grid.entry.js +0 -115419
- package/dist/ezui/ez-icon.entry.js +0 -37
- package/dist/ezui/ez-list.entry.js +0 -516
- package/dist/ezui/ez-loading-bar.entry.js +0 -24
- package/dist/ezui/ez-modal.entry.js +0 -67
- package/dist/ezui/ez-number-input.entry.js +0 -148
- package/dist/ezui/ez-popover.entry.js +0 -141
- package/dist/ezui/ez-popup.entry.js +0 -49
- package/dist/ezui/ez-radio-button.entry.js +0 -45
- package/dist/ezui/ez-scroller.entry.js +0 -101
- package/dist/ezui/ez-search.entry.js +0 -83
- package/dist/ezui/ez-select-box.entry.js +0 -18
- package/dist/ezui/ez-tabselector.entry.js +0 -195
- package/dist/ezui/ez-text-area.entry.js +0 -158
- package/dist/ezui/ez-text-input.entry.js +0 -235
- package/dist/ezui/ez-time-input.entry.js +0 -164
- package/dist/ezui/ez-toast.entry.js +0 -84
- package/dist/ezui/ez-upload.entry.js +0 -379
- package/dist/ezui/ez-view-stack.entry.js +0 -74
- package/dist/ezui/index-1e9d524f.js +0 -3031
- package/dist/ezui/index-b96183c8.js +0 -2295
- package/dist/ezui/index-f32470b5.js +0 -3
- package/dist/ezui/p-2f02347d.entry.js +0 -1
- package/dist/ezui/p-416bedbe.entry.js +0 -1
- package/dist/ezui/p-544f0c63.entry.js +0 -1
- package/dist/ezui/p-62110996.entry.js +0 -1
- package/dist/ezui/p-719e9ef9.entry.js +0 -1
- package/dist/ezui/p-787fbdfe.js +0 -1
- package/dist/ezui/p-9d5be6a7.entry.js +0 -1
- package/dist/ezui/p-a27dafa4.entry.js +0 -1
- package/dist/ezui/p-aba3fa6c.entry.js +0 -1
- package/dist/ezui/p-adbe4188.js +0 -1
- package/dist/ezui/p-af43be42.entry.js +0 -1
- package/dist/ezui/p-b7467ad6.entry.js +0 -1
- package/dist/ezui/p-c019e137.entry.js +0 -1
- package/dist/ezui/p-c9d2060e.entry.js +0 -1
- package/dist/ezui/p-cccd8cde.entry.js +0 -1
- package/dist/ezui/p-d0671e14.entry.js +0 -1
- package/dist/ezui/p-e0f06d73.entry.js +0 -1
- package/dist/ezui/p-e59adce6.entry.js +0 -1
- package/dist/ezui/p-ed835b36.entry.js +0 -1
- package/dist/ezui/shadow-css-8c625855.js +0 -388
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { Grid as EnterpriseGrid, LicenseManager } from "ag-grid-enterprise";
|
|
2
2
|
import { Grid } from "ag-grid-community";
|
|
3
|
+
import { ApplicationContext, DataType, SortMode, UserInterface, NumberUtils, StringUtils } from "@sankhyalabs/core";
|
|
3
4
|
import gridTerms from "./i18n/pt-BR.js";
|
|
4
5
|
import getHeaderColumnTemplate from "./template/HeaderColumnTemplate.js";
|
|
5
6
|
import DataSource from "./DataSource";
|
|
6
|
-
import {
|
|
7
|
-
import { NumberUtils, StringUtils } from "@sankhyalabs/core";
|
|
7
|
+
import { CellRenderer } from "./components/cellRenderer";
|
|
8
8
|
export default class AgGridController {
|
|
9
9
|
constructor(enterprise) {
|
|
10
10
|
this.DEFAULT_ROW_HEIGHT = 30;
|
|
11
11
|
this.CHECK_BOX_COL_ID = "checkBoxColumn";
|
|
12
|
+
this.STATUS_COL_ID = "statusColumn";
|
|
12
13
|
this.RECORD_ARCHIVE_COL_ID = "__RECORD_ARCHIVE__";
|
|
13
14
|
this.BLOCK_LOAD_DEBOUNCE = 400;
|
|
14
15
|
this._menuItems = [];
|
|
@@ -38,6 +39,7 @@ export default class AgGridController {
|
|
|
38
39
|
this._doubleClickCallBack = options.onDoubleClick;
|
|
39
40
|
this._multipleSelection = options.allowMultipleSelection;
|
|
40
41
|
this._dataUnit = options.dataUnit;
|
|
42
|
+
this._statusResolver = options.statusResolver;
|
|
41
43
|
if (this._dataUnit) {
|
|
42
44
|
this._dataUnit.sortingProvider = this;
|
|
43
45
|
}
|
|
@@ -61,7 +63,11 @@ export default class AgGridController {
|
|
|
61
63
|
}));
|
|
62
64
|
return items;
|
|
63
65
|
},
|
|
64
|
-
getRowHeight: this.getRowHeight.bind(this)
|
|
66
|
+
getRowHeight: this.getRowHeight.bind(this),
|
|
67
|
+
defaultColDef: {
|
|
68
|
+
headerClass: "ez-grid__cell-header",
|
|
69
|
+
cellClass: "ez-grid__cell-body"
|
|
70
|
+
}
|
|
65
71
|
};
|
|
66
72
|
this.setOptionsEvents(this._gridOptions);
|
|
67
73
|
this.setOptionsSupress(this._gridOptions);
|
|
@@ -173,7 +179,29 @@ export default class AgGridController {
|
|
|
173
179
|
suppressMovable: true,
|
|
174
180
|
suppressAutoSize: true,
|
|
175
181
|
suppressMenu: true,
|
|
176
|
-
lockPosition: true
|
|
182
|
+
lockPosition: true,
|
|
183
|
+
pinned: true
|
|
184
|
+
});
|
|
185
|
+
}
|
|
186
|
+
if (this._statusResolver != undefined) {
|
|
187
|
+
newColDefs.push({
|
|
188
|
+
colId: this.STATUS_COL_ID,
|
|
189
|
+
headerName: "",
|
|
190
|
+
checkboxSelection: false,
|
|
191
|
+
headerCheckboxSelection: false,
|
|
192
|
+
width: 28,
|
|
193
|
+
suppressMovable: true,
|
|
194
|
+
suppressAutoSize: true,
|
|
195
|
+
suppressMenu: true,
|
|
196
|
+
lockPosition: true,
|
|
197
|
+
pinned: true,
|
|
198
|
+
cellRenderer: CellRenderer,
|
|
199
|
+
cellRendererParams: {
|
|
200
|
+
statusResolver: this._statusResolver
|
|
201
|
+
},
|
|
202
|
+
cellStyle: {
|
|
203
|
+
"text-align": "center"
|
|
204
|
+
}
|
|
177
205
|
});
|
|
178
206
|
}
|
|
179
207
|
cols.forEach(c => {
|
|
@@ -189,7 +217,7 @@ export default class AgGridController {
|
|
|
189
217
|
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
190
218
|
}
|
|
191
219
|
const colDef = this._gridOptions.columnApi.getAllColumns();
|
|
192
|
-
return colDef.filter(c => c.getColId()
|
|
220
|
+
return colDef.filter(c => ![this.CHECK_BOX_COL_ID, this.STATUS_COL_ID].includes(c.getColId())).map(c => {
|
|
193
221
|
const def = c.getColDef();
|
|
194
222
|
const colDef = { name: def.field, label: def.headerName };
|
|
195
223
|
this.conditionalSet(colDef, "sortable", def.sortable);
|
|
@@ -210,7 +238,7 @@ export default class AgGridController {
|
|
|
210
238
|
let visibleColumns = [];
|
|
211
239
|
let sort = [];
|
|
212
240
|
state.forEach((cfgColumn, index) => {
|
|
213
|
-
this._gridOptions.columnApi.moveColumn(cfgColumn.name, index +
|
|
241
|
+
this._gridOptions.columnApi.moveColumn(cfgColumn.name, index + 2);
|
|
214
242
|
this._gridOptions.columnApi.setColumnWidth(cfgColumn.name, cfgColumn.width);
|
|
215
243
|
visibleColumns.push(cfgColumn.name);
|
|
216
244
|
if (cfgColumn.ascending !== undefined) {
|
|
@@ -244,7 +272,7 @@ export default class AgGridController {
|
|
|
244
272
|
props.set('sortable', def.sortable);
|
|
245
273
|
this.conditionalSet(colState, "props", props);
|
|
246
274
|
return colState;
|
|
247
|
-
}).filter(c => c.name !== "__SELECTION__");
|
|
275
|
+
}).filter(c => c.name !== "__SELECTION__" && c.name !== this.STATUS_COL_ID);
|
|
248
276
|
}
|
|
249
277
|
getSelection() {
|
|
250
278
|
return this._gridOptions.api.getSelectedRows();
|
|
@@ -258,7 +286,7 @@ export default class AgGridController {
|
|
|
258
286
|
term,
|
|
259
287
|
fields: this._gridOptions.columnApi
|
|
260
288
|
.getColumns()
|
|
261
|
-
.filter(col => col.isVisible() && ![this.CHECK_BOX_COL_ID, this.RECORD_ARCHIVE_COL_ID].includes(col.getColId()))
|
|
289
|
+
.filter(col => col.isVisible() && ![this.CHECK_BOX_COL_ID, this.STATUS_COL_ID, this.RECORD_ARCHIVE_COL_ID].includes(col.getColId()))
|
|
262
290
|
.map(col => col.getColId())
|
|
263
291
|
};
|
|
264
292
|
this._dataSource.quickFilter = quickFilter;
|
|
@@ -294,25 +322,30 @@ export default class AgGridController {
|
|
|
294
322
|
cellStyle: this.getStyleByColumn(source)
|
|
295
323
|
};
|
|
296
324
|
}
|
|
325
|
+
getInitCellStyle() {
|
|
326
|
+
return {
|
|
327
|
+
"line-height": (this.getRowHeight() - 1) + "px"
|
|
328
|
+
};
|
|
329
|
+
}
|
|
297
330
|
getStyleByColumn(source) {
|
|
298
|
-
let cellStyle =
|
|
331
|
+
let cellStyle = this.getInitCellStyle();
|
|
299
332
|
switch (source === null || source === void 0 ? void 0 : source.userInterface) {
|
|
300
333
|
case UserInterface.DECIMALNUMBER:
|
|
301
334
|
case UserInterface.INTEGERNUMBER:
|
|
302
|
-
cellStyle["
|
|
335
|
+
cellStyle["text-align"] = "right";
|
|
303
336
|
break;
|
|
304
337
|
case UserInterface.DATE:
|
|
305
338
|
case UserInterface.DATETIME:
|
|
306
339
|
case UserInterface.TIME:
|
|
307
|
-
cellStyle["
|
|
340
|
+
cellStyle["text-align"] = "center";
|
|
308
341
|
break;
|
|
309
342
|
default:
|
|
310
|
-
cellStyle["
|
|
343
|
+
cellStyle["text-align"] = "left";
|
|
311
344
|
}
|
|
312
345
|
return cellStyle;
|
|
313
346
|
}
|
|
314
347
|
getFormatterByColumn(params, source) {
|
|
315
|
-
var _a
|
|
348
|
+
var _a;
|
|
316
349
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === "OPTIONSELECTOR" && source.options) {
|
|
317
350
|
const prop = source === null || source === void 0 ? void 0 : source.options;
|
|
318
351
|
let options;
|
|
@@ -340,8 +373,11 @@ export default class AgGridController {
|
|
|
340
373
|
}
|
|
341
374
|
}
|
|
342
375
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.SEARCH) {
|
|
343
|
-
if (params.value != undefined) {
|
|
344
|
-
return
|
|
376
|
+
if (((_a = params === null || params === void 0 ? void 0 : params.value) === null || _a === void 0 ? void 0 : _a.value) != undefined) {
|
|
377
|
+
return params.value.value + " - " + params.value.label;
|
|
378
|
+
}
|
|
379
|
+
else {
|
|
380
|
+
return params === null || params === void 0 ? void 0 : params.value;
|
|
345
381
|
}
|
|
346
382
|
}
|
|
347
383
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.DECIMALNUMBER) {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export class CellRenderer {
|
|
2
|
+
constructor() {
|
|
3
|
+
this._eGui = undefined;
|
|
4
|
+
}
|
|
5
|
+
init(params) {
|
|
6
|
+
this.renderStatus(params);
|
|
7
|
+
}
|
|
8
|
+
refresh(params) {
|
|
9
|
+
this.renderStatus(params);
|
|
10
|
+
return true;
|
|
11
|
+
}
|
|
12
|
+
destroy() {
|
|
13
|
+
this._eGui = undefined;
|
|
14
|
+
}
|
|
15
|
+
getGui() {
|
|
16
|
+
return this._eGui;
|
|
17
|
+
}
|
|
18
|
+
renderStatus(params) {
|
|
19
|
+
const statusResolver = params === null || params === void 0 ? void 0 : params.statusResolver;
|
|
20
|
+
if (statusResolver != undefined) {
|
|
21
|
+
const statusKey = Object.keys(statusResolver)[0];
|
|
22
|
+
const statusValues = statusResolver[statusKey];
|
|
23
|
+
const value = params === null || params === void 0 ? void 0 : params.data[statusKey];
|
|
24
|
+
const color = statusValues != undefined && value != undefined && statusValues[value];
|
|
25
|
+
this._eGui = document.createElement('div');
|
|
26
|
+
this._eGui.innerHTML = `
|
|
27
|
+
<span class="ez-grid__cell-status" style="background-color: ${color || ""};"></span>
|
|
28
|
+
`;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -134,7 +134,8 @@ export class EzGrid {
|
|
|
134
134
|
},
|
|
135
135
|
allowMultipleSelection: this.multipleSelection,
|
|
136
136
|
serverURL: this.serverUrl,
|
|
137
|
-
dataUnit: this.dataUnit
|
|
137
|
+
dataUnit: this.dataUnit,
|
|
138
|
+
statusResolver: this.statusResolver
|
|
138
139
|
});
|
|
139
140
|
if (this.config) {
|
|
140
141
|
this.observeConfig(this.config);
|
|
@@ -167,7 +168,7 @@ export class EzGrid {
|
|
|
167
168
|
this._gridController.setColumnsState(config.columns);
|
|
168
169
|
this.closeGridConfig();
|
|
169
170
|
}
|
|
170
|
-
closeGridConfig() {
|
|
171
|
+
async closeGridConfig() {
|
|
171
172
|
this._popUpGridConfig = false;
|
|
172
173
|
}
|
|
173
174
|
async openGridConfig() {
|
|
@@ -267,7 +268,27 @@ export class EzGrid {
|
|
|
267
268
|
"optional": false,
|
|
268
269
|
"docs": {
|
|
269
270
|
"tags": [],
|
|
270
|
-
"text": ""
|
|
271
|
+
"text": "Reposit\u00F3rio de dados, controla a manipula\u00E7\u00E3o dos dados."
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"statusResolver": {
|
|
275
|
+
"type": "unknown",
|
|
276
|
+
"mutable": false,
|
|
277
|
+
"complexType": {
|
|
278
|
+
"original": "IStatusResolver",
|
|
279
|
+
"resolved": "IStatusResolver",
|
|
280
|
+
"references": {
|
|
281
|
+
"IStatusResolver": {
|
|
282
|
+
"location": "import",
|
|
283
|
+
"path": "./controller/EzGridController"
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"required": false,
|
|
288
|
+
"optional": false,
|
|
289
|
+
"docs": {
|
|
290
|
+
"tags": [],
|
|
291
|
+
"text": "Configura\u00E7\u00E3o do valor da coluna de status.\nExemplo: { \"RECDESP\": { \"-1\" : \"#BD0025\", \"1\" : \"#157A00\" } }"
|
|
271
292
|
}
|
|
272
293
|
}
|
|
273
294
|
}; }
|
|
@@ -537,6 +558,22 @@ export class EzGrid {
|
|
|
537
558
|
"tags": []
|
|
538
559
|
}
|
|
539
560
|
},
|
|
561
|
+
"closeGridConfig": {
|
|
562
|
+
"complexType": {
|
|
563
|
+
"signature": "() => Promise<void>",
|
|
564
|
+
"parameters": [],
|
|
565
|
+
"references": {
|
|
566
|
+
"Promise": {
|
|
567
|
+
"location": "global"
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
"return": "Promise<void>"
|
|
571
|
+
},
|
|
572
|
+
"docs": {
|
|
573
|
+
"text": "",
|
|
574
|
+
"tags": []
|
|
575
|
+
}
|
|
576
|
+
},
|
|
540
577
|
"openGridConfig": {
|
|
541
578
|
"complexType": {
|
|
542
579
|
"signature": "() => Promise<void>",
|
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
/*@doc Define o espaçamento utilizado à esquerda do botão de fechar do componente.*/
|
|
12
12
|
--ez-grid-config__button-close--padding-left: var(--space--medium, 12px);
|
|
13
13
|
|
|
14
|
-
/*@doc Define
|
|
15
|
-
--
|
|
14
|
+
/*@doc Define a cor do texto utilizado para o titulo do componente.*/
|
|
15
|
+
--snk-grid-config__title--color: var(--title--primary, #2B3A54);
|
|
16
16
|
|
|
17
17
|
/*@doc Define o estilo da fonte utilizada para o titulo do componente.*/
|
|
18
|
-
--ez-grid-config__title--font-family: var(--font-pattern, "
|
|
18
|
+
--ez-grid-config__title--font-family: var(--font-pattern, "Roboto");
|
|
19
|
+
|
|
20
|
+
/*@doc Define o tamanho da fonte utilizada para o titulo do componente.*/
|
|
21
|
+
--ez-grid-config__title--font-size: var(--title--large, 20px);
|
|
19
22
|
|
|
20
23
|
/*@doc Define o peso do texto utilizado para o titulo do componente.*/
|
|
21
|
-
--ez-grid-config__title--font-weight: var(--text-weight--large, 700);
|
|
24
|
+
--ez-grid-config__title--font-weight: var(--text-weight--extra-large, 700);
|
|
25
|
+
|
|
26
|
+
/*@doc Define o estilo da fonte utilizada para o subtitulo do componente.*/
|
|
27
|
+
--ez-grid-config__subtitle--font-family: var(--font-pattern, "Roboto");
|
|
22
28
|
|
|
23
29
|
/*@doc Define o tamanho da fonte utilizada para o subtitulo do componente.*/
|
|
24
30
|
--ez-grid-config__subtitle--font-size: var(--text--medium, 14px);
|
|
@@ -27,13 +33,16 @@
|
|
|
27
33
|
--ez-grid-config__scrollbar--width: var(--space--medium, 12px);
|
|
28
34
|
|
|
29
35
|
/*@doc Define a cor da barra de rolagem do componente.*/
|
|
30
|
-
--ez-grid-config__scrollbar--background-color: var(--
|
|
36
|
+
--ez-grid-config__scrollbar--background-color-primary: var(--scrollbar--primary, #2B3A54);
|
|
37
|
+
|
|
38
|
+
/*@doc Define a cor de fundo da barra de rolagem do componente.*/
|
|
39
|
+
--ez-grid-config__scrollbar--background-color-secondary: var(--scrollbar--secondary, #E5EAF0);
|
|
31
40
|
|
|
32
41
|
/*@doc Define o raio da borda da barra de rolagem do componente.*/
|
|
33
|
-
--ez-grid-config__scrollbar--border-radius: var(--border--radius-
|
|
42
|
+
--ez-grid-config__scrollbar--border-radius: var(--border--radius-small, 6px);
|
|
34
43
|
|
|
35
44
|
/* @doc Define o estilo do texto do grupo da lista. */
|
|
36
|
-
--ez-grid-config__group--font-family: var(--font-pattern, "
|
|
45
|
+
--ez-grid-config__group--font-family: var(--font-pattern, "Roboto");
|
|
37
46
|
|
|
38
47
|
/* @doc Define o tamanho do texto do grupo da lista. */
|
|
39
48
|
--ez-grid-config__group--font-size: var(--text--medium, 14px);
|
|
@@ -82,13 +91,6 @@ ez-list {
|
|
|
82
91
|
display: none;
|
|
83
92
|
}
|
|
84
93
|
|
|
85
|
-
.grid-config__main {
|
|
86
|
-
overflow-y: auto;
|
|
87
|
-
|
|
88
|
-
/*public*/
|
|
89
|
-
padding-right: var(--ez-grid-config__main--padding-right);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
94
|
.tabselector-container {
|
|
93
95
|
/*public*/
|
|
94
96
|
padding: var(--ez-grid-config__tabselector-container--padding) 0;
|
|
@@ -106,13 +108,6 @@ ez-list {
|
|
|
106
108
|
width: 100%;
|
|
107
109
|
}
|
|
108
110
|
|
|
109
|
-
.subtitle {
|
|
110
|
-
/*public*/
|
|
111
|
-
font-family: var(--ez-grid-config__subtitle--font-family);
|
|
112
|
-
font-size: var(--ez-grid-config__subtitle--font-size);
|
|
113
|
-
color: var(--text--primary);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
111
|
.title {
|
|
117
112
|
display: flex;
|
|
118
113
|
margin: 0;
|
|
@@ -121,29 +116,45 @@ ez-list {
|
|
|
121
116
|
text-align: left;
|
|
122
117
|
|
|
123
118
|
/*public*/
|
|
124
|
-
color: var(--
|
|
119
|
+
color: var(--snk-grid-config__title--color);
|
|
120
|
+
font-size: var(--ez-grid-config__title--font-size);
|
|
125
121
|
font-family: var(--ez-grid-config__title--font-family);
|
|
126
|
-
font-size: var(--title--large);
|
|
127
122
|
font-weight: var(--ez-grid-config__title--font-weight);
|
|
128
123
|
}
|
|
129
124
|
|
|
125
|
+
.subtitle {
|
|
126
|
+
/*public*/
|
|
127
|
+
color: var(--text--primary);
|
|
128
|
+
font-size: var(--ez-grid-config__subtitle--font-size);
|
|
129
|
+
font-family: var(--ez-grid-config__subtitle--font-family);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.grid-config__main {
|
|
133
|
+
overflow-y: auto;
|
|
134
|
+
scrollbar-width: thin;
|
|
135
|
+
|
|
136
|
+
/*public*/
|
|
137
|
+
scrollbar-color: var(--ez-grid-config__scrollbar--background-color-primary) var(--ez-grid-config__scrollbar--background-color-secondary);
|
|
138
|
+
padding-right: var(--ez-grid-config__main--padding-right);
|
|
139
|
+
}
|
|
140
|
+
|
|
130
141
|
.grid-config__main::-webkit-scrollbar-track {
|
|
131
|
-
|
|
142
|
+
/*public*/
|
|
143
|
+
background-color: var(--ez-grid-config__scrollbar--background-color-secondary);
|
|
132
144
|
}
|
|
133
145
|
|
|
134
146
|
.grid-config__main::-webkit-scrollbar-thumb {
|
|
135
147
|
/*public*/
|
|
136
|
-
background-color: var(--ez-grid-config__scrollbar--background-color);
|
|
148
|
+
background-color: var(--ez-grid-config__scrollbar--background-color-primary);
|
|
137
149
|
border-radius: var(--ez-grid-config__scrollbar--border-radius);
|
|
138
150
|
}
|
|
139
151
|
|
|
140
152
|
.grid-config__main::-webkit-scrollbar {
|
|
141
|
-
background-color: #f0f2f5;
|
|
142
|
-
|
|
143
153
|
/*public*/
|
|
144
154
|
width: var(--ez-grid-config__scrollbar--width);
|
|
145
155
|
max-width: var(--ez-grid-config__scrollbar--width);
|
|
146
156
|
min-width: var(--ez-grid-config__scrollbar--width);
|
|
157
|
+
background-color: var(--ez-grid-config__scrollbar--background-color-secondary);
|
|
147
158
|
}
|
|
148
159
|
|
|
149
160
|
.group-name {
|
|
@@ -75,7 +75,7 @@ export class EzGridConfig {
|
|
|
75
75
|
}
|
|
76
76
|
buildColumnListSlot(item, group) {
|
|
77
77
|
return (h("div", null,
|
|
78
|
-
h("ez-check", { mode: 'switch', id: 'switch' + item + group, value: group.group === "Visíveis", onEzChange: (ev) => { this.switchColumnGroup(ev, item); } })));
|
|
78
|
+
h("ez-check", { mode: 'switch', id: 'switch' + ((item === null || item === void 0 ? void 0 : item.label) || '') + ((group === null || group === void 0 ? void 0 : group.group) || ''), value: group.group === "Visíveis", onEzChange: (ev) => { this.switchColumnGroup(ev, item); } })));
|
|
79
79
|
}
|
|
80
80
|
buildOrderListSlot(item) {
|
|
81
81
|
let selectedOption = "na";
|
|
@@ -158,7 +158,6 @@ export class EzGridConfig {
|
|
|
158
158
|
this.columns = newColumnList;
|
|
159
159
|
this._dataChanged = false;
|
|
160
160
|
this.closeConfig();
|
|
161
|
-
ApplicationUtils.info("As configurações foram salvas com sucesso!");
|
|
162
161
|
this.save();
|
|
163
162
|
}
|
|
164
163
|
save() {
|
|
@@ -23,11 +23,12 @@ export class SelectBox {
|
|
|
23
23
|
"type": "string",
|
|
24
24
|
"mutable": false,
|
|
25
25
|
"complexType": {
|
|
26
|
-
"original": "
|
|
27
|
-
"resolved": "
|
|
26
|
+
"original": "IOption | string",
|
|
27
|
+
"resolved": "IOption | string",
|
|
28
28
|
"references": {
|
|
29
|
-
"
|
|
30
|
-
"location": "
|
|
29
|
+
"IOption": {
|
|
30
|
+
"location": "import",
|
|
31
|
+
"path": "../../../ez-combo-box/ez-combo-box"
|
|
31
32
|
}
|
|
32
33
|
}
|
|
33
34
|
},
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
--ez-list__item--border-color: var(--title--primary, #2b3a54);
|
|
28
28
|
|
|
29
29
|
/* @doc Define o estilo do texto do item da lista. */
|
|
30
|
-
--ez-list__item--font-family: var(--font-pattern, "
|
|
30
|
+
--ez-list__item--font-family: var(--font-pattern, "Roboto");
|
|
31
31
|
|
|
32
32
|
/* @doc Define o tamanho do texto do item da lista. */
|
|
33
33
|
--ez-list__item--font-size: var(--text--medium, 14px);
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
--ez-list__selected-item--background-color: var(--color--primary-300, #E2F4EF);
|
|
46
46
|
|
|
47
47
|
/* @doc Define o estilo do texto do grupo da lista. */
|
|
48
|
-
--ez-list__group--font-family: var(--font-pattern, "
|
|
48
|
+
--ez-list__group--font-family: var(--font-pattern, "Roboto");
|
|
49
49
|
|
|
50
50
|
/* @doc Define o tamanho do texto do grupo da lista. */
|
|
51
51
|
--ez-list__group--font-size: var(--text--medium, 14px);
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
--ez-list__group--padding-bottom: var(--space-small, 6px);
|
|
58
58
|
|
|
59
59
|
/* @doc Define o estilo do texto da área de transferência de grupos. */
|
|
60
|
-
--ez-list__group-overlay--font-family: var(--font-pattern, "
|
|
60
|
+
--ez-list__group-overlay--font-family: var(--font-pattern, "Roboto");
|
|
61
61
|
|
|
62
62
|
/* @doc Define o tamanho do texto da área de transferência de grupos. */
|
|
63
63
|
--ez-list__group-overlay--font-size: var(--text--medium, 14px);
|
|
@@ -145,7 +145,15 @@ p {
|
|
|
145
145
|
display: flex;
|
|
146
146
|
justify-content: flex-start;
|
|
147
147
|
align-items: center;
|
|
148
|
-
width:
|
|
148
|
+
width: 100%;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.group-container .item-content {
|
|
152
|
+
max-width: calc(100% - 41px);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.items-container .item-content {
|
|
156
|
+
max-width: calc(100% - 100px);
|
|
149
157
|
}
|
|
150
158
|
|
|
151
159
|
.draggable-list {
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
:host {
|
|
2
|
+
display: grid;
|
|
3
|
+
grid-template-rows: 0 auto 1fr auto 0;
|
|
4
|
+
width: 100%;
|
|
5
|
+
height: 100%;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.ez-modal-container__header{
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-wrap: nowrap;
|
|
11
|
+
flex-direction: row;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ez-modal-container__content {
|
|
16
|
+
overflow-y: auto;
|
|
17
|
+
scrollbar-gutter: stable;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ez-modal-container__title{
|
|
21
|
+
display: grid;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ez-modal-container__close-button{
|
|
25
|
+
cursor: pointer;
|
|
26
|
+
background-color: transparent;
|
|
27
|
+
border: none;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.ez-modal-container__close-icon{
|
|
31
|
+
--icon--color: var(--title--primary, #2B3A54)
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.ez-modal-container__focus-ctrl{
|
|
35
|
+
height: 0px;
|
|
36
|
+
background-color: transparent;
|
|
37
|
+
border: none;
|
|
38
|
+
}
|