imm-element-ui 2.0.4 → 2.0.6
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/esm2022/lib/grid/cell-edit/cell-edit-select.component.mjs +157 -138
- package/esm2022/lib/grid/grid/grid.component.mjs +3 -3
- package/fesm2022/imm-element-ui.mjs +177 -158
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/grid/actions/actions.component.d.ts +1 -1
- package/lib/grid/cell-edit/cell-edit-select.component.d.ts +6 -4
- package/lib/grid/grid/grid.component.d.ts +1 -194
- package/lib/grid/grid-utils.d.ts +61 -724
- package/lib/service/themeConfig.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ export declare class ActionsComponent {
|
|
|
11
11
|
selectedRows: any[];
|
|
12
12
|
i18n: I18nService;
|
|
13
13
|
constructor(confirm: ConfirmationService);
|
|
14
|
-
getClass(action: any): "
|
|
14
|
+
getClass(action: any): "block" | "hidden";
|
|
15
15
|
doCancelAction(): void;
|
|
16
16
|
doAction(event: any, action: any): void;
|
|
17
17
|
onActionClick(event: any, action: any): void;
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import type { ICellEditorAngularComp } from 'ag-grid-angular';
|
|
1
3
|
import type { ICellEditorParams } from 'ag-grid-community';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CellEditSelectComponent {
|
|
5
|
+
export declare class CellEditSelectComponent implements ICellEditorAngularComp {
|
|
4
6
|
params: any;
|
|
5
7
|
value: any;
|
|
6
|
-
|
|
8
|
+
input: ViewContainerRef;
|
|
7
9
|
agInit(params: ICellEditorParams): void;
|
|
8
10
|
getValue(): any;
|
|
9
|
-
onChange(
|
|
10
|
-
|
|
11
|
+
onChange(event: any): void;
|
|
12
|
+
updateNameField(nameField: any, event: any): void;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CellEditSelectComponent, never>;
|
|
12
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<CellEditSelectComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
13
15
|
}
|
|
@@ -38,200 +38,7 @@ export declare class GridComponent {
|
|
|
38
38
|
themeConfig: ThemeConfigService;
|
|
39
39
|
localeText: any;
|
|
40
40
|
i18nService: I18nService;
|
|
41
|
-
myTheme: import("@angular/core").Signal<import("ag-grid-community").Theme<
|
|
42
|
-
accentColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
43
|
-
advancedFilterBuilderButtonBarBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
44
|
-
advancedFilterBuilderColumnPillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
45
|
-
advancedFilterBuilderIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
46
|
-
advancedFilterBuilderJoinPillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
47
|
-
advancedFilterBuilderOptionPillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
48
|
-
advancedFilterBuilderValuePillColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
49
|
-
backgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
50
|
-
borderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
51
|
-
borderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
52
|
-
browserColorScheme: import("ag-grid-community/dist/types/src/theming/theme-types").ColorSchemeValue;
|
|
53
|
-
cellHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
54
|
-
cellHorizontalPaddingScale: number;
|
|
55
|
-
cellTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
56
|
-
cellWidgetSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
57
|
-
chartMenuLabelColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
58
|
-
chartMenuPanelWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
59
|
-
chromeBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
60
|
-
columnBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
61
|
-
columnDropCellBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
62
|
-
columnDropCellTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
63
|
-
columnDropCellDragHandleColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
64
|
-
columnDropCellBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
65
|
-
columnHoverColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
66
|
-
columnSelectIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
67
|
-
dialogBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
68
|
-
dialogShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
69
|
-
cellEditingBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
70
|
-
cellEditingShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
71
|
-
dragAndDropImageBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
72
|
-
dragAndDropImageBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
73
|
-
dragAndDropImageShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
74
|
-
dragHandleColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
75
|
-
dropdownShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
76
|
-
filterToolPanelGroupIndent: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
77
|
-
focusShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
78
|
-
fontFamily: import("ag-grid-community/dist/types/src/theming/theme-types").FontFamilyValue;
|
|
79
|
-
fontSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
80
|
-
dataFontSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
81
|
-
footerRowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
82
|
-
foregroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
83
|
-
spacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
84
|
-
headerBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
85
|
-
headerCellBackgroundTransitionDuration: import("ag-grid-community/dist/types/src/theming/theme-types").DurationValue;
|
|
86
|
-
headerCellHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
87
|
-
headerCellMovingBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
88
|
-
headerColumnBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
89
|
-
headerColumnBorderHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
90
|
-
headerColumnResizeHandleColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
91
|
-
headerColumnResizeHandleHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
92
|
-
headerColumnResizeHandleWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
93
|
-
headerFontFamily: import("ag-grid-community/dist/types/src/theming/theme-types").FontFamilyValue;
|
|
94
|
-
cellFontFamily: import("ag-grid-community/dist/types/src/theming/theme-types").FontFamilyValue;
|
|
95
|
-
headerFontSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
96
|
-
headerFontWeight: import("ag-grid-community/dist/types/src/theming/theme-types").FontWeightValue;
|
|
97
|
-
headerHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
98
|
-
headerRowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
99
|
-
headerTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
100
|
-
headerVerticalPaddingScale: number;
|
|
101
|
-
iconButtonHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
102
|
-
iconButtonHoverColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
103
|
-
iconSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
104
|
-
invalidColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
105
|
-
listItemHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
106
|
-
menuBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
107
|
-
menuBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
108
|
-
menuSeparatorColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
109
|
-
menuShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
110
|
-
menuTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
111
|
-
modalOverlayBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
112
|
-
oddRowBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
113
|
-
panelBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
114
|
-
panelTitleBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
115
|
-
panelTitleBarBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
116
|
-
pinnedColumnBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
117
|
-
pinnedRowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
118
|
-
popupShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
119
|
-
cardShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
120
|
-
rangeSelectionBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
121
|
-
rangeSelectionBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
122
|
-
rangeSelectionBorderStyle: import("ag-grid-community/dist/types/src/theming/theme-types").BorderStyleValue;
|
|
123
|
-
rangeSelectionChartBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
124
|
-
rangeSelectionChartCategoryBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
125
|
-
rangeSelectionHighlightColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
126
|
-
rowBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
127
|
-
rowGroupIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
128
|
-
rowHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
129
|
-
rowHoverColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
130
|
-
rowLoadingSkeletonEffectColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
131
|
-
rowVerticalPaddingScale: number;
|
|
132
|
-
selectCellBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
133
|
-
selectCellBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
134
|
-
selectedRowBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
135
|
-
setFilterIndentSize: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
136
|
-
sideBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
137
|
-
sideButtonBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
138
|
-
sideBarPanelWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
139
|
-
sidePanelBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
140
|
-
sideButtonBarTopPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
141
|
-
sideButtonSelectedUnderlineWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
142
|
-
sideButtonSelectedUnderlineColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
143
|
-
sideButtonSelectedUnderlineTransitionDuration: import("ag-grid-community/dist/types/src/theming/theme-types").DurationValue;
|
|
144
|
-
sideButtonBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
145
|
-
sideButtonTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
146
|
-
sideButtonHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
147
|
-
sideButtonHoverTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
148
|
-
sideButtonSelectedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
149
|
-
sideButtonSelectedTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
150
|
-
sideButtonSelectedBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
151
|
-
sideButtonLeftPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
152
|
-
sideButtonRightPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
153
|
-
sideButtonVerticalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
154
|
-
subtleTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
155
|
-
textColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
156
|
-
toggleButtonWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
157
|
-
toggleButtonHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
158
|
-
toggleButtonOffBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
159
|
-
toggleButtonOnBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
160
|
-
toggleButtonSwitchBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
161
|
-
toggleButtonSwitchInset: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
162
|
-
toolPanelSeparatorBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
163
|
-
tooltipBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
164
|
-
tooltipBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
165
|
-
tooltipTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
166
|
-
valueChangeDeltaDownColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
167
|
-
valueChangeDeltaUpColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
168
|
-
valueChangeValueHighlightBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
169
|
-
widgetContainerHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
170
|
-
widgetContainerVerticalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
171
|
-
widgetHorizontalSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
172
|
-
widgetVerticalSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
173
|
-
wrapperBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
174
|
-
wrapperBorderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
175
|
-
} & {
|
|
176
|
-
checkboxBorderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
177
|
-
checkboxBorderWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
178
|
-
checkboxCheckedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
179
|
-
checkboxCheckedBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
180
|
-
checkboxCheckedShapeColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
181
|
-
checkboxCheckedShapeImage: import("ag-grid-community/dist/types/src/theming/theme-types").ImageValue;
|
|
182
|
-
checkboxIndeterminateBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
183
|
-
checkboxIndeterminateBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
184
|
-
checkboxIndeterminateShapeColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
185
|
-
checkboxIndeterminateShapeImage: import("ag-grid-community/dist/types/src/theming/theme-types").ImageValue;
|
|
186
|
-
checkboxUncheckedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
187
|
-
checkboxUncheckedBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
188
|
-
radioCheckedShapeImage: import("ag-grid-community/dist/types/src/theming/theme-types").ImageValue;
|
|
189
|
-
} & {
|
|
190
|
-
readonly backgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
191
|
-
readonly foregroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
192
|
-
readonly borderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
193
|
-
readonly chromeBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
194
|
-
readonly browserColorScheme: import("ag-grid-community/dist/types/src/theming/theme-types").ColorSchemeValue;
|
|
195
|
-
} & {
|
|
196
|
-
tabBarBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
197
|
-
tabBarBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
198
|
-
tabTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
199
|
-
tabSelectedTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
200
|
-
tabHoverTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
201
|
-
tabSelectedBorderColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
202
|
-
tabSelectedBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
203
|
-
tabBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
204
|
-
tabBarHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
205
|
-
tabBarTopPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
206
|
-
tabBottomPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
207
|
-
tabHorizontalPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
208
|
-
tabHoverBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
209
|
-
tabSelectedBorderWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
210
|
-
tabSelectedUnderlineColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
211
|
-
tabSelectedUnderlineTransitionDuration: import("ag-grid-community/dist/types/src/theming/theme-types").DurationValue;
|
|
212
|
-
tabSelectedUnderlineWidth: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
213
|
-
tabSpacing: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
214
|
-
tabTopPadding: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
215
|
-
} & {
|
|
216
|
-
inputBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
217
|
-
inputBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
218
|
-
inputBorderRadius: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
219
|
-
inputPaddingStart: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
220
|
-
inputFocusBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
221
|
-
inputFocusShadow: import("ag-grid-community/dist/types/src/theming/theme-types").ShadowValue;
|
|
222
|
-
inputDisabledBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
223
|
-
inputDisabledTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
224
|
-
inputInvalidBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
225
|
-
inputDisabledBorder: import("ag-grid-community/dist/types/src/theming/theme-types").BorderValue;
|
|
226
|
-
inputFocusBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
227
|
-
inputFocusTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
228
|
-
inputHeight: import("ag-grid-community/dist/types/src/theming/theme-types").LengthValue;
|
|
229
|
-
inputInvalidBackgroundColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
230
|
-
inputInvalidTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
231
|
-
inputTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
232
|
-
inputPlaceholderTextColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
233
|
-
inputIconColor: import("ag-grid-community/dist/types/src/theming/theme-types").ColorValue;
|
|
234
|
-
}>>;
|
|
41
|
+
myTheme: import("@angular/core").Signal<import("ag-grid-community").Theme<import("ag-grid-community").ThemeDefaultParams>>;
|
|
235
42
|
components: {
|
|
236
43
|
cellEditInputNumberCompoent: typeof import("imm-element-ui").CellEditInputNumberCompoent;
|
|
237
44
|
cellEditDatePickerComponent: typeof import("imm-element-ui").CellEditDatePickerComponent;
|