imm-element-ui 0.0.1
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/README.md +24 -0
- package/esm2022/imm-element-ui.mjs +5 -0
- package/esm2022/lib/am/am.component.mjs +502 -0
- package/esm2022/lib/crumb-action/crumb-action.component.mjs +127 -0
- package/esm2022/lib/form/form/form.component.mjs +217 -0
- package/esm2022/lib/form/form-field/field-control.mjs +19 -0
- package/esm2022/lib/form/form-field/field-utils.mjs +227 -0
- package/esm2022/lib/form/form-field/form-field.mjs +129 -0
- package/esm2022/lib/form/form-field/form-type.mjs +123 -0
- package/esm2022/lib/form/form-field/label.directive.mjs +62 -0
- package/esm2022/lib/form/form-type/autocomplete.type.mjs +200 -0
- package/esm2022/lib/form/form-type/codemirror.type.mjs +167 -0
- package/esm2022/lib/form/form-type/datepicker.type.mjs +212 -0
- package/esm2022/lib/form/form-type/image.type.mjs +225 -0
- package/esm2022/lib/form/form-type/inputnumber.type.mjs +144 -0
- package/esm2022/lib/form/form-type/inputtext.type.mjs +69 -0
- package/esm2022/lib/form/form-type/multiselect.type.mjs +219 -0
- package/esm2022/lib/form/form-type/radio.type.mjs +167 -0
- package/esm2022/lib/form/form-type/select.type.mjs +196 -0
- package/esm2022/lib/form/form-type/textarea.type.mjs +75 -0
- package/esm2022/lib/form/form-type/treeselect.type.mjs +174 -0
- package/esm2022/lib/form/form-type/upload.type.mjs +228 -0
- package/esm2022/lib/grid/actions/actions.component.mjs +30 -0
- package/esm2022/lib/grid/cell-edit/cell-edit-autoComplete.component.mjs +89 -0
- package/esm2022/lib/grid/cell-edit/cell-edit-datePicker.compoent.mjs +182 -0
- package/esm2022/lib/grid/cell-edit/cell-edit-inputNumber.component.mjs +107 -0
- package/esm2022/lib/grid/cell-edit/cell-edit-inputText.compoent.mjs +46 -0
- package/esm2022/lib/grid/cell-edit/cell-edit-select.component.mjs +148 -0
- package/esm2022/lib/grid/cell-edit/index.mjs +7 -0
- package/esm2022/lib/grid/cell-render/async-renderer.mjs +29 -0
- package/esm2022/lib/grid/cell-render/link-render.mjs +42 -0
- package/esm2022/lib/grid/grid/grid.component.mjs +373 -0
- package/esm2022/lib/grid/grid-utils.mjs +103 -0
- package/esm2022/lib/grid/mock-data.mjs +14 -0
- package/esm2022/lib/grid/pager/pager.component.mjs +19 -0
- package/esm2022/lib/head/head.component.mjs +43 -0
- package/esm2022/lib/import/import.component.mjs +68 -0
- package/esm2022/lib/log/log.component.mjs +37 -0
- package/esm2022/lib/page-form/page-form.component.mjs +167 -0
- package/esm2022/lib/page-form/page-form.interface.mjs +2 -0
- package/esm2022/lib/page-grid-list/page-grid-list.component.mjs +60 -0
- package/esm2022/lib/row-selector/row-selector.component.mjs +58 -0
- package/esm2022/lib/search/mock-data.mjs +40 -0
- package/esm2022/lib/search/pop-date/pop-date.component.mjs +106 -0
- package/esm2022/lib/search/pop-list/pop-list.component.mjs +32 -0
- package/esm2022/lib/search/pop-panel/pop-panel.component.mjs +44 -0
- package/esm2022/lib/search/pop-select/pop-select.component.mjs +45 -0
- package/esm2022/lib/search/pop-self/pop-self.component.mjs +132 -0
- package/esm2022/lib/search/pop-tree/pop-tree.component.mjs +50 -0
- package/esm2022/lib/search/search/search.component.mjs +138 -0
- package/esm2022/lib/search/search-tip/search-tip.component.mjs +54 -0
- package/esm2022/lib/search/search-utils.mjs +165 -0
- package/esm2022/lib/search/text-panel/text-panel.component.mjs +41 -0
- package/esm2022/lib/service/action.service.mjs +115 -0
- package/esm2022/lib/service/i18n.service.mjs +79 -0
- package/esm2022/lib/service/themeConfig.service.mjs +82 -0
- package/esm2022/lib/service/userHistory.service.mjs +106 -0
- package/esm2022/lib/share/utils.mjs +150 -0
- package/esm2022/lib/steps/steps.component.mjs +31 -0
- package/esm2022/lib/theme-config/theme-config-panel.compoent.mjs +141 -0
- package/esm2022/lib/theme-config/theme-config.compoent.mjs +45 -0
- package/esm2022/public-api.mjs +26 -0
- package/fesm2022/imm-element-ui.mjs +6382 -0
- package/fesm2022/imm-element-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/am/am.component.d.ts +191 -0
- package/lib/crumb-action/crumb-action.component.d.ts +40 -0
- package/lib/form/form/form.component.d.ts +53 -0
- package/lib/form/form-field/field-control.d.ts +13 -0
- package/lib/form/form-field/field-utils.d.ts +12 -0
- package/lib/form/form-field/form-field.d.ts +86 -0
- package/lib/form/form-field/form-type.d.ts +22 -0
- package/lib/form/form-field/label.directive.d.ts +14 -0
- package/lib/form/form-type/autocomplete.type.d.ts +77 -0
- package/lib/form/form-type/codemirror.type.d.ts +31 -0
- package/lib/form/form-type/datepicker.type.d.ts +83 -0
- package/lib/form/form-type/image.type.d.ts +49 -0
- package/lib/form/form-type/inputnumber.type.d.ts +49 -0
- package/lib/form/form-type/inputtext.type.d.ts +17 -0
- package/lib/form/form-type/multiselect.type.d.ts +85 -0
- package/lib/form/form-type/radio.type.d.ts +31 -0
- package/lib/form/form-type/select.type.d.ts +73 -0
- package/lib/form/form-type/textarea.type.d.ts +19 -0
- package/lib/form/form-type/treeselect.type.d.ts +62 -0
- package/lib/form/form-type/upload.type.d.ts +51 -0
- package/lib/grid/actions/actions.component.d.ts +14 -0
- package/lib/grid/cell-edit/cell-edit-autoComplete.component.d.ts +18 -0
- package/lib/grid/cell-edit/cell-edit-datePicker.compoent.d.ts +16 -0
- package/lib/grid/cell-edit/cell-edit-inputNumber.component.d.ts +15 -0
- package/lib/grid/cell-edit/cell-edit-inputText.compoent.d.ts +16 -0
- package/lib/grid/cell-edit/cell-edit-select.component.d.ts +12 -0
- package/lib/grid/cell-edit/index.d.ts +6 -0
- package/lib/grid/cell-render/async-renderer.d.ts +10 -0
- package/lib/grid/cell-render/link-render.d.ts +14 -0
- package/lib/grid/grid/grid.component.d.ts +272 -0
- package/lib/grid/grid-utils.d.ts +751 -0
- package/lib/grid/mock-data.d.ts +12 -0
- package/lib/grid/pager/pager.component.d.ts +15 -0
- package/lib/head/head.component.d.ts +17 -0
- package/lib/import/import.component.d.ts +22 -0
- package/lib/log/log.component.d.ts +14 -0
- package/lib/page-form/page-form.component.d.ts +46 -0
- package/lib/page-form/page-form.interface.d.ts +27 -0
- package/lib/page-grid-list/page-grid-list.component.d.ts +18 -0
- package/lib/row-selector/row-selector.component.d.ts +21 -0
- package/lib/search/mock-data.d.ts +20 -0
- package/lib/search/pop-date/pop-date.component.d.ts +26 -0
- package/lib/search/pop-list/pop-list.component.d.ts +12 -0
- package/lib/search/pop-panel/pop-panel.component.d.ts +15 -0
- package/lib/search/pop-select/pop-select.component.d.ts +13 -0
- package/lib/search/pop-self/pop-self.component.d.ts +31 -0
- package/lib/search/pop-tree/pop-tree.component.d.ts +22 -0
- package/lib/search/search/search.component.d.ts +60 -0
- package/lib/search/search-tip/search-tip.component.d.ts +22 -0
- package/lib/search/search-utils.d.ts +10 -0
- package/lib/search/text-panel/text-panel.component.d.ts +21 -0
- package/lib/service/action.service.d.ts +54 -0
- package/lib/service/i18n.service.d.ts +93 -0
- package/lib/service/themeConfig.service.d.ts +24 -0
- package/lib/service/userHistory.service.d.ts +26 -0
- package/lib/share/utils.d.ts +16 -0
- package/lib/steps/steps.component.d.ts +16 -0
- package/lib/theme-config/theme-config-panel.compoent.d.ts +78 -0
- package/lib/theme-config/theme-config.compoent.d.ts +6 -0
- package/package.json +28 -0
- package/public-api.d.ts +20 -0
- package/src/lib/crumb-action/crumb-action.component.scss +51 -0
- package/src/lib/form/form/form.component.scss +0 -0
- package/src/lib/grid/actions/actions.component.scss +0 -0
- package/src/lib/grid/grid/grid.component.scss +0 -0
- package/src/lib/grid/pager/pager.component.scss +13 -0
- package/src/lib/head/head.component.scss +3 -0
- package/src/lib/import/import.component.scss +10 -0
- package/src/lib/log/log.component.scss +21 -0
- package/src/lib/page-form/page-form.component.scss +14 -0
- package/src/lib/page-grid-list/page-grid-list.component.scss +14 -0
- package/src/lib/row-selector/row-selector.component.scss +1 -0
- package/src/lib/search/dynamic-search/dynamic-search.component.scss +70 -0
- package/src/lib/search/pop-date/pop-date.component.scss +47 -0
- package/src/lib/search/pop-list/pop-list.component.scss +23 -0
- package/src/lib/search/pop-panel/pop-panel.component.scss +49 -0
- package/src/lib/search/pop-select/pop-select.component.scss +29 -0
- package/src/lib/search/pop-self/pop-self.component.scss +60 -0
- package/src/lib/search/pop-tree/pop-tree.component.scss +34 -0
- package/src/lib/search/search/search.component.scss +70 -0
- package/src/lib/search/search-tip/search-tip.component.scss +47 -0
- package/src/lib/search/text-panel/text-panel.component.scss +16 -0
- package/src/lib/steps/steps.component.scss +52 -0
- package/src/lib/styles/styles.scss +232 -0
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { CellValueChangedEvent, ColDef, GridOptions as RawGridOptions } from 'ag-grid-community';
|
|
3
|
+
import { AgGridAngular } from 'ag-grid-angular';
|
|
4
|
+
import { ThemeConfigService } from '../../service/themeConfig.service';
|
|
5
|
+
import { ActionService } from '../../service/action.service';
|
|
6
|
+
import { I18nService } from '../../service/i18n.service';
|
|
7
|
+
import { Search } from '../../am/am.component';
|
|
8
|
+
import { Observable } from 'rxjs';
|
|
9
|
+
import { HttpClient } from '@angular/common/http';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export interface GridOptions extends RawGridOptions {
|
|
12
|
+
serverFunc?: (search: Search) => Observable<any[]>;
|
|
13
|
+
clientFunc?: (search: Search) => Observable<any[]>;
|
|
14
|
+
preSearch?: Search;
|
|
15
|
+
treeDataField?: string;
|
|
16
|
+
treeLevel?: number;
|
|
17
|
+
scrollHeight?: string;
|
|
18
|
+
undoRedoCellEditing?: boolean;
|
|
19
|
+
undoRedoCellEditingLimit?: number;
|
|
20
|
+
mainField?: string;
|
|
21
|
+
modelName?: string;
|
|
22
|
+
fk?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare class GridComponent {
|
|
25
|
+
private action;
|
|
26
|
+
grid: AgGridAngular;
|
|
27
|
+
gridRef: ElementRef;
|
|
28
|
+
gridOptions: import("@angular/core").InputSignal<GridOptions>;
|
|
29
|
+
toOptions: import("@angular/core").Signal<any>;
|
|
30
|
+
themeConfig: ThemeConfigService;
|
|
31
|
+
localeText: any;
|
|
32
|
+
i18nService: I18nService;
|
|
33
|
+
myTheme: import("@angular/core").Signal<import("ag-grid-community").Theme<{
|
|
34
|
+
accentColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
35
|
+
advancedFilterBuilderButtonBarBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
36
|
+
advancedFilterBuilderColumnPillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
37
|
+
advancedFilterBuilderIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
38
|
+
advancedFilterBuilderJoinPillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
39
|
+
advancedFilterBuilderOptionPillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
40
|
+
advancedFilterBuilderValuePillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
41
|
+
backgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
42
|
+
borderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
43
|
+
borderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
44
|
+
browserColorScheme: import("ag-grid-community/dist/types/src/theming/theme-types").ColorSchemeValue;
|
|
45
|
+
cellHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
46
|
+
cellHorizontalPaddingScale: number;
|
|
47
|
+
cellTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
48
|
+
cellWidgetSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
49
|
+
chartMenuLabelColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
50
|
+
chartMenuPanelWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
51
|
+
chromeBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
52
|
+
columnBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
53
|
+
columnDropCellBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
54
|
+
columnDropCellTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
55
|
+
columnDropCellDragHandleColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
56
|
+
columnDropCellBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
57
|
+
columnHoverColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
58
|
+
columnSelectIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
59
|
+
dialogBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
60
|
+
dialogShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
61
|
+
cellEditingBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
62
|
+
cellEditingShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
63
|
+
dragAndDropImageBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
64
|
+
dragAndDropImageBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
65
|
+
dragAndDropImageShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
66
|
+
dragHandleColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
67
|
+
dropdownShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
68
|
+
filterToolPanelGroupIndent: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
69
|
+
focusShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
70
|
+
fontFamily: import("ag-grid-community/dist/types/src/theming/theme-types").FontFamilyValue;
|
|
71
|
+
fontSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
72
|
+
dataFontSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
73
|
+
footerRowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
74
|
+
foregroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
75
|
+
spacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
76
|
+
headerBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
77
|
+
headerCellBackgroundTransitionDuration: import("ag-grid-community/dist/types/src/theming/theme-types").DurationValue;
|
|
78
|
+
headerCellHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
79
|
+
headerCellMovingBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
80
|
+
headerColumnBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
81
|
+
headerColumnBorderHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
82
|
+
headerColumnResizeHandleColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
83
|
+
headerColumnResizeHandleHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
84
|
+
headerColumnResizeHandleWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
85
|
+
headerFontFamily: import("ag-grid-community/dist/types/src/theming/theme-types").FontFamilyValue;
|
|
86
|
+
cellFontFamily: import("ag-grid-community/dist/types/src/theming/theme-types").FontFamilyValue;
|
|
87
|
+
headerFontSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
88
|
+
headerFontWeight: import("ag-grid-community/dist/types/src/theming/theme-types").FontWeightValue;
|
|
89
|
+
headerHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
90
|
+
headerRowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
91
|
+
headerTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
92
|
+
headerVerticalPaddingScale: number;
|
|
93
|
+
iconButtonHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
94
|
+
iconButtonHoverColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
95
|
+
iconSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
96
|
+
invalidColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
97
|
+
listItemHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
98
|
+
menuBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
99
|
+
menuBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
100
|
+
menuSeparatorColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
101
|
+
menuShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
102
|
+
menuTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
103
|
+
modalOverlayBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
104
|
+
oddRowBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
105
|
+
panelBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
106
|
+
panelTitleBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
107
|
+
panelTitleBarBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
108
|
+
pinnedColumnBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
109
|
+
pinnedRowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
110
|
+
popupShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
111
|
+
cardShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
112
|
+
rangeSelectionBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
113
|
+
rangeSelectionBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
114
|
+
rangeSelectionBorderStyle: import("ag-grid-community/dist/types/src/theming/theme-types").BorderStyleValue;
|
|
115
|
+
rangeSelectionChartBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
116
|
+
rangeSelectionChartCategoryBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
117
|
+
rangeSelectionHighlightColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
118
|
+
rowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
119
|
+
rowGroupIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
120
|
+
rowHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
121
|
+
rowHoverColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
122
|
+
rowLoadingSkeletonEffectColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
123
|
+
rowVerticalPaddingScale: number;
|
|
124
|
+
selectCellBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
125
|
+
selectCellBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
126
|
+
selectedRowBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
127
|
+
setFilterIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
128
|
+
sideBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
129
|
+
sideButtonBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
130
|
+
sideBarPanelWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
131
|
+
sidePanelBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
132
|
+
sideButtonBarTopPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
133
|
+
sideButtonSelectedUnderlineWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
134
|
+
sideButtonSelectedUnderlineColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
135
|
+
sideButtonSelectedUnderlineTransitionDuration: import("ag-grid-community/dist/types/src/theming/theme-types").DurationValue;
|
|
136
|
+
sideButtonBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
137
|
+
sideButtonTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
138
|
+
sideButtonHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
139
|
+
sideButtonHoverTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
140
|
+
sideButtonSelectedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
141
|
+
sideButtonSelectedTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
142
|
+
sideButtonSelectedBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
143
|
+
sideButtonLeftPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
144
|
+
sideButtonRightPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
145
|
+
sideButtonVerticalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
146
|
+
subtleTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
147
|
+
textColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
148
|
+
toggleButtonWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
149
|
+
toggleButtonHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
150
|
+
toggleButtonOffBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
151
|
+
toggleButtonOnBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
152
|
+
toggleButtonSwitchBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
153
|
+
toggleButtonSwitchInset: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
154
|
+
toolPanelSeparatorBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
155
|
+
tooltipBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
156
|
+
tooltipBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
157
|
+
tooltipTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
158
|
+
valueChangeDeltaDownColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
159
|
+
valueChangeDeltaUpColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
160
|
+
valueChangeValueHighlightBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
161
|
+
widgetContainerHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
162
|
+
widgetContainerVerticalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
163
|
+
widgetHorizontalSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
164
|
+
widgetVerticalSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
165
|
+
wrapperBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
166
|
+
wrapperBorderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
167
|
+
} & {
|
|
168
|
+
checkboxBorderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
169
|
+
checkboxBorderWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
170
|
+
checkboxCheckedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
171
|
+
checkboxCheckedBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
172
|
+
checkboxCheckedShapeColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
173
|
+
checkboxCheckedShapeImage: import("ag-grid-community/dist/types/src/theming/theme-types").ImageValue;
|
|
174
|
+
checkboxIndeterminateBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
175
|
+
checkboxIndeterminateBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
176
|
+
checkboxIndeterminateShapeColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
177
|
+
checkboxIndeterminateShapeImage: import("ag-grid-community/dist/types/src/theming/theme-types").ImageValue;
|
|
178
|
+
checkboxUncheckedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
179
|
+
checkboxUncheckedBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
180
|
+
radioCheckedShapeImage: import("ag-grid-community/dist/types/src/theming/theme-types").ImageValue;
|
|
181
|
+
} & {
|
|
182
|
+
readonly backgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
183
|
+
readonly foregroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
184
|
+
readonly borderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
185
|
+
readonly chromeBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
186
|
+
readonly browserColorScheme: import("ag-grid-community/dist/types/src/theming/theme-types").ColorSchemeValue;
|
|
187
|
+
} & {
|
|
188
|
+
tabBarBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
189
|
+
tabBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
190
|
+
tabTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
191
|
+
tabSelectedTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
192
|
+
tabHoverTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
193
|
+
tabSelectedBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
194
|
+
tabSelectedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
195
|
+
tabBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
196
|
+
tabBarHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
197
|
+
tabBarTopPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
198
|
+
tabBottomPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
199
|
+
tabHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
200
|
+
tabHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
201
|
+
tabSelectedBorderWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
202
|
+
tabSelectedUnderlineColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
203
|
+
tabSelectedUnderlineTransitionDuration: import("ag-grid-community/dist/types/src/theming/theme-types").DurationValue;
|
|
204
|
+
tabSelectedUnderlineWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
205
|
+
tabSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
206
|
+
tabTopPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
207
|
+
} & {
|
|
208
|
+
inputBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
209
|
+
inputBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
210
|
+
inputBorderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
211
|
+
inputPaddingStart: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
212
|
+
inputFocusBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
213
|
+
inputFocusShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
214
|
+
inputDisabledBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
215
|
+
inputDisabledTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
216
|
+
inputInvalidBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
217
|
+
inputDisabledBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
218
|
+
inputFocusBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
219
|
+
inputFocusTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
220
|
+
inputHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
221
|
+
inputInvalidBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
222
|
+
inputInvalidTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
223
|
+
inputTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
224
|
+
inputPlaceholderTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
225
|
+
inputIconColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
226
|
+
}>>;
|
|
227
|
+
components: {
|
|
228
|
+
cellEditInputNumberCompoent: typeof import("../cell-edit").CellEditInputNumberCompoent;
|
|
229
|
+
cellEditDatePickerComponent: typeof import("../cell-edit").CellEditDatePickerComponent;
|
|
230
|
+
cellEditSelectComponent: typeof import("../cell-edit").CellEditSelectComponent;
|
|
231
|
+
linkRenderer: typeof import("../cell-render/link-render").LinkRenderer;
|
|
232
|
+
asyncRenderer: typeof import("../cell-render/async-renderer").AsyncRenderer;
|
|
233
|
+
cellEditAutoCompleteComponent: typeof import("../cell-edit").CellEditAutoCompleteComponent;
|
|
234
|
+
};
|
|
235
|
+
columnDefs: ColDef[];
|
|
236
|
+
initGrid: boolean;
|
|
237
|
+
contentMap: Record<string, string>;
|
|
238
|
+
mainField: string;
|
|
239
|
+
modelName: string;
|
|
240
|
+
upsert: import("@angular/core").InputSignal<any>;
|
|
241
|
+
subIndex: number;
|
|
242
|
+
rowData: import("@angular/core").InputSignal<any>;
|
|
243
|
+
searchPrm: import("@angular/core").ModelSignal<Search>;
|
|
244
|
+
deleteEmit: import("@angular/core").OutputEmitterRef<number[]>;
|
|
245
|
+
addEmit: import("@angular/core").OutputEmitterRef<void>;
|
|
246
|
+
addType: import("@angular/core").InputSignal<"handle" | "select" | undefined>;
|
|
247
|
+
selectData: import("@angular/core").InputSignal<any[] | undefined>;
|
|
248
|
+
showAct: import("@angular/core").InputSignal<boolean>;
|
|
249
|
+
actPos: import("@angular/core").InputSignal<"top" | "bottom">;
|
|
250
|
+
http: HttpClient;
|
|
251
|
+
richMultMap: Record<string, any>;
|
|
252
|
+
constructor(action: ActionService);
|
|
253
|
+
ngOnInit(): void;
|
|
254
|
+
getGrid(): AgGridAngular;
|
|
255
|
+
onGridReady(e: any): void;
|
|
256
|
+
onSelectionChanged(event: any): any;
|
|
257
|
+
setRichValue(): Promise<any[]>;
|
|
258
|
+
getEnums(id: number): Promise<Object>;
|
|
259
|
+
getData(): void;
|
|
260
|
+
getServerData(search?: Search): void;
|
|
261
|
+
handleServerTree(params: any): void;
|
|
262
|
+
getClientData(search?: Search): void;
|
|
263
|
+
handleClientTree(): void;
|
|
264
|
+
cellValueChanged(e: CellValueChangedEvent): void;
|
|
265
|
+
handleAddedRows(addedRows: any[]): void;
|
|
266
|
+
handleDeletedRows(deletedRows: any[]): void;
|
|
267
|
+
addRow(): void;
|
|
268
|
+
delRows(): void;
|
|
269
|
+
editingFix(): void;
|
|
270
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
271
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "custom-grid", never, { "gridOptions": { "alias": "gridOptions"; "required": false; "isSignal": true; }; "upsert": { "alias": "upsert"; "required": false; "isSignal": true; }; "rowData": { "alias": "rowData"; "required": false; "isSignal": true; }; "searchPrm": { "alias": "searchPrm"; "required": false; "isSignal": true; }; "addType": { "alias": "addType"; "required": false; "isSignal": true; }; "selectData": { "alias": "selectData"; "required": false; "isSignal": true; }; "showAct": { "alias": "showAct"; "required": false; "isSignal": true; }; "actPos": { "alias": "actPos"; "required": false; "isSignal": true; }; }, { "searchPrm": "searchPrmChange"; "deleteEmit": "deleteEmit"; "addEmit": "addEmit"; }, never, never, true, never>;
|
|
272
|
+
}
|