igniteui-webcomponents-grids 6.3.0-alpha.2 → 6.3.0-rc.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/custom-elements.json +20 -27
- package/grids/combined.js +376 -381
- package/grids/lib/igc-action-strip-component.d.ts +3 -3
- package/grids/lib/igc-action-strip-resource-strings.d.ts +1 -1
- package/grids/lib/igc-grid-base-directive.d.ts +3 -3
- package/grids/lib/igc-grid-resource-strings.d.ts +175 -174
- package/grids/lib/igc-hierarchical-grid-component.d.ts +3 -3
- package/grids/lib/igc-paginator-component.d.ts +3 -3
- package/grids/lib/igc-paginator-resource-strings.d.ts +6 -6
- package/grids/lib/igc-pivot-date-dimension.d.ts +3 -3
- package/grids/lib/igc-query-builder-component.d.ts +3 -3
- package/grids/lib/igc-query-builder-header-component.d.ts +3 -3
- package/grids/lib/igc-query-builder-resource-strings.d.ts +72 -72
- package/grids/lib/igc-row-island-component.d.ts +3 -3
- package/grids/lib/igc-validation-resource-strings.d.ts +10 -10
- package/grids/lib/index.d.ts +21 -2
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/package.json +1 -1
- package/vscode.html-custom-data.json +1 -1
- package/web-types.json +1 -1
- package/grids/lib/igc-prefixed-resource-strings.d.ts +0 -11
|
@@ -15,7 +15,7 @@ import { IgcGridEditingActionsComponent } from './igc-grid-editing-actions-compo
|
|
|
15
15
|
import { IgcGridPinningActionsComponent } from './igc-grid-pinning-actions-component';
|
|
16
16
|
import { IgcRowIslandComponent } from './igc-row-island-component';
|
|
17
17
|
import { IgcFilteringExpressionsTree } from './igc-filtering-expressions-tree';
|
|
18
|
-
import {
|
|
18
|
+
import { IgcGridResourceStrings } from './igc-grid-resource-strings';
|
|
19
19
|
import { IgcCellType } from './igc-cell-type';
|
|
20
20
|
import { IgcRowType } from './igc-row-type';
|
|
21
21
|
import { IgcHierarchicalGridBaseDirectiveEventMap } from './igc-hierarchical-grid-base-directive';
|
|
@@ -140,8 +140,8 @@ import { IgcHierarchicalGridBaseDirectiveEventMap } from './igc-hierarchical-gri
|
|
|
140
140
|
* @remarks
|
|
141
141
|
* By default it uses EN resources.
|
|
142
142
|
*/
|
|
143
|
-
public set resourceStrings(value:
|
|
144
|
-
public get resourceStrings():
|
|
143
|
+
public set resourceStrings(value: IgcGridResourceStrings);
|
|
144
|
+
public get resourceStrings(): IgcGridResourceStrings;
|
|
145
145
|
|
|
146
146
|
|
|
147
147
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { IgcPageCancellableEventArgs } from './igc-page-cancellable-event-args';
|
|
3
3
|
import { IgcPageEventArgs } from './igc-page-event-args';
|
|
4
4
|
import { IgcOverlaySettings } from './igc-overlay-settings';
|
|
5
|
-
import {
|
|
5
|
+
import { IgcPaginatorResourceStrings } from './igc-paginator-resource-strings';
|
|
6
6
|
import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from './common';
|
|
7
7
|
|
|
8
8
|
|
|
@@ -111,8 +111,8 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
111
111
|
* An accessor that sets the resource strings.
|
|
112
112
|
* By default it uses EN resources.
|
|
113
113
|
*/
|
|
114
|
-
public set resourceStrings(value:
|
|
115
|
-
public get resourceStrings():
|
|
114
|
+
public set resourceStrings(value: IgcPaginatorResourceStrings);
|
|
115
|
+
public get resourceStrings(): IgcPaginatorResourceStrings;
|
|
116
116
|
|
|
117
117
|
|
|
118
118
|
|
|
@@ -7,22 +7,22 @@
|
|
|
7
7
|
{
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
public
|
|
10
|
+
public igx_paginator_label?: string;
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
public
|
|
13
|
+
public igx_paginator_pager_text?: string;
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
public
|
|
16
|
+
public igx_paginator_first_page_button_text?: string;
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
public
|
|
19
|
+
public igx_paginator_previous_page_button_text?: string;
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
public
|
|
22
|
+
public igx_paginator_last_page_button_text?: string;
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
public
|
|
25
|
+
public igx_paginator_next_page_button_text?: string;
|
|
26
26
|
|
|
27
27
|
}
|
|
28
28
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { IgcPivotDimension } from './igc-pivot-dimension';
|
|
3
3
|
import { GridColumnDataType } from './grid-column-data-type';
|
|
4
|
-
import {
|
|
4
|
+
import { IgcGridResourceStrings } from './igc-grid-resource-strings';
|
|
5
5
|
import { IgcPivotDateDimensionOptions } from './igc-pivot-date-dimension-options';
|
|
6
6
|
|
|
7
7
|
|
|
@@ -60,8 +60,8 @@ import { IgcPivotDateDimensionOptions } from './igc-pivot-date-dimension-options
|
|
|
60
60
|
* @remarks
|
|
61
61
|
* By default it uses EN resources.
|
|
62
62
|
*/
|
|
63
|
-
public set resourceStrings(value:
|
|
64
|
-
public get resourceStrings():
|
|
63
|
+
public set resourceStrings(value: IgcGridResourceStrings);
|
|
64
|
+
public get resourceStrings(): IgcGridResourceStrings;
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { IgcExpressionTree } from './igc-expression-tree';
|
|
3
3
|
import { IgcEntityType } from './igc-entity-type';
|
|
4
|
-
import {
|
|
4
|
+
import { IgcQueryBuilderResourceStrings } from './igc-query-builder-resource-strings';
|
|
5
5
|
import { IgcQueryBuilderSearchValueContext } from './igc-query-builder-search-value-context';
|
|
6
6
|
import { IgcRenderFunction } from './common';
|
|
7
7
|
import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from './common';
|
|
@@ -76,8 +76,8 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
76
76
|
* Sets the resource strings.
|
|
77
77
|
* By default it uses EN resources.
|
|
78
78
|
*/
|
|
79
|
-
public set resourceStrings(value:
|
|
80
|
-
public get resourceStrings():
|
|
79
|
+
public set resourceStrings(value: IgcQueryBuilderResourceStrings);
|
|
80
|
+
public get resourceStrings(): IgcQueryBuilderResourceStrings;
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
2
|
+
import { IgcQueryBuilderResourceStrings } from './igc-query-builder-resource-strings';
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
@@ -53,8 +53,8 @@ import { IgcPrefixedResourceStrings } from './igc-prefixed-resource-strings';
|
|
|
53
53
|
*
|
|
54
54
|
* @deprecated
|
|
55
55
|
*/
|
|
56
|
-
public set resourceStrings(value:
|
|
57
|
-
public get resourceStrings():
|
|
56
|
+
public set resourceStrings(value: IgcQueryBuilderResourceStrings);
|
|
57
|
+
public get resourceStrings(): IgcQueryBuilderResourceStrings;
|
|
58
58
|
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -7,220 +7,220 @@
|
|
|
7
7
|
{
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
public
|
|
10
|
+
public igx_query_builder_date_placeholder?: string;
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
public
|
|
13
|
+
public igx_query_builder_time_placeholder?: string;
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
public
|
|
16
|
+
public igx_query_builder_datetime_placeholder?: string;
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
public
|
|
19
|
+
public igx_query_builder_filter_operator_and?: string;
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
public
|
|
22
|
+
public igx_query_builder_filter_operator_or?: string;
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
public
|
|
25
|
+
public igx_query_builder_filter_contains?: string;
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
public
|
|
28
|
+
public igx_query_builder_filter_doesNotContain?: string;
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
public
|
|
31
|
+
public igx_query_builder_filter_startsWith?: string;
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
public
|
|
34
|
+
public igx_query_builder_filter_endsWith?: string;
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
public
|
|
37
|
+
public igx_query_builder_filter_equals?: string;
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
public
|
|
40
|
+
public igx_query_builder_filter_doesNotEqual?: string;
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
public
|
|
43
|
+
public igx_query_builder_filter_empty?: string;
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
public
|
|
46
|
+
public igx_query_builder_filter_notEmpty?: string;
|
|
47
47
|
|
|
48
48
|
|
|
49
|
-
public
|
|
49
|
+
public igx_query_builder_filter_null?: string;
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
public
|
|
52
|
+
public igx_query_builder_filter_notNull?: string;
|
|
53
53
|
|
|
54
54
|
|
|
55
|
-
public
|
|
55
|
+
public igx_query_builder_filter_in?: string;
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
public
|
|
58
|
+
public igx_query_builder_filter_notIn?: string;
|
|
59
59
|
|
|
60
60
|
|
|
61
|
-
public
|
|
61
|
+
public igx_query_builder_filter_before?: string;
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
public
|
|
64
|
+
public igx_query_builder_filter_after?: string;
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
public
|
|
67
|
+
public igx_query_builder_filter_at?: string;
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
public
|
|
70
|
+
public igx_query_builder_filter_not_at?: string;
|
|
71
71
|
|
|
72
72
|
|
|
73
|
-
public
|
|
73
|
+
public igx_query_builder_filter_at_before?: string;
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
public
|
|
76
|
+
public igx_query_builder_filter_at_after?: string;
|
|
77
77
|
|
|
78
78
|
|
|
79
|
-
public
|
|
79
|
+
public igx_query_builder_filter_today?: string;
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
public
|
|
82
|
+
public igx_query_builder_filter_yesterday?: string;
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
public
|
|
85
|
+
public igx_query_builder_filter_thisMonth?: string;
|
|
86
86
|
|
|
87
87
|
|
|
88
|
-
public
|
|
88
|
+
public igx_query_builder_filter_lastMonth?: string;
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
public
|
|
91
|
+
public igx_query_builder_filter_nextMonth?: string;
|
|
92
92
|
|
|
93
93
|
|
|
94
|
-
public
|
|
94
|
+
public igx_query_builder_filter_thisYear?: string;
|
|
95
95
|
|
|
96
96
|
|
|
97
|
-
public
|
|
97
|
+
public igx_query_builder_filter_lastYear?: string;
|
|
98
98
|
|
|
99
99
|
|
|
100
|
-
public
|
|
100
|
+
public igx_query_builder_filter_nextYear?: string;
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
public
|
|
103
|
+
public igx_query_builder_filter_greaterThan?: string;
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
public
|
|
106
|
+
public igx_query_builder_filter_lessThan?: string;
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
public
|
|
109
|
+
public igx_query_builder_filter_greaterThanOrEqualTo?: string;
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
public
|
|
112
|
+
public igx_query_builder_filter_lessThanOrEqualTo?: string;
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
public
|
|
115
|
+
public igx_query_builder_filter_true?: string;
|
|
116
116
|
|
|
117
117
|
|
|
118
|
-
public
|
|
118
|
+
public igx_query_builder_filter_false?: string;
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
public
|
|
121
|
+
public igx_query_builder_filter_all?: string;
|
|
122
122
|
|
|
123
123
|
|
|
124
|
-
public
|
|
124
|
+
public igx_query_builder_from_label?: string;
|
|
125
125
|
|
|
126
126
|
|
|
127
|
-
public
|
|
127
|
+
public igx_query_builder_select_label?: string;
|
|
128
128
|
|
|
129
129
|
|
|
130
|
-
public
|
|
130
|
+
public igx_query_builder_where_label?: string;
|
|
131
131
|
|
|
132
132
|
|
|
133
|
-
public
|
|
133
|
+
public igx_query_builder_and_group?: string;
|
|
134
134
|
|
|
135
135
|
|
|
136
|
-
public
|
|
136
|
+
public igx_query_builder_or_group?: string;
|
|
137
137
|
|
|
138
138
|
|
|
139
|
-
public
|
|
139
|
+
public igx_query_builder_end_group?: string;
|
|
140
140
|
|
|
141
141
|
|
|
142
|
-
public
|
|
142
|
+
public igx_query_builder_and_label?: string;
|
|
143
143
|
|
|
144
144
|
|
|
145
|
-
public
|
|
145
|
+
public igx_query_builder_or_label?: string;
|
|
146
146
|
|
|
147
147
|
|
|
148
|
-
public
|
|
148
|
+
public igx_query_builder_switch_group?: string;
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
public
|
|
151
|
+
public igx_query_builder_add_condition?: string;
|
|
152
152
|
|
|
153
153
|
|
|
154
|
-
public
|
|
154
|
+
public igx_query_builder_add_group?: string;
|
|
155
155
|
|
|
156
156
|
|
|
157
|
-
public
|
|
157
|
+
public igx_query_builder_add_condition_root?: string;
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
public
|
|
160
|
+
public igx_query_builder_add_group_root?: string;
|
|
161
161
|
|
|
162
162
|
|
|
163
|
-
public
|
|
163
|
+
public igx_query_builder_ungroup?: string;
|
|
164
164
|
|
|
165
165
|
|
|
166
|
-
public
|
|
166
|
+
public igx_query_builder_delete?: string;
|
|
167
167
|
|
|
168
168
|
|
|
169
|
-
public
|
|
169
|
+
public igx_query_builder_delete_filters?: string;
|
|
170
170
|
|
|
171
171
|
|
|
172
|
-
public
|
|
172
|
+
public igx_query_builder_initial_text?: string;
|
|
173
173
|
|
|
174
174
|
|
|
175
|
-
public
|
|
175
|
+
public igx_query_builder_column_placeholder?: string;
|
|
176
176
|
|
|
177
177
|
|
|
178
|
-
public
|
|
178
|
+
public igx_query_builder_condition_placeholder?: string;
|
|
179
179
|
|
|
180
180
|
|
|
181
|
-
public
|
|
181
|
+
public igx_query_builder_value_placeholder?: string;
|
|
182
182
|
|
|
183
183
|
|
|
184
|
-
public
|
|
184
|
+
public igx_query_builder_query_value_placeholder?: string;
|
|
185
185
|
|
|
186
186
|
|
|
187
|
-
public
|
|
187
|
+
public igx_query_builder_all_fields?: string;
|
|
188
188
|
|
|
189
189
|
|
|
190
|
-
public
|
|
190
|
+
public igx_query_builder_details?: string;
|
|
191
191
|
|
|
192
192
|
|
|
193
|
-
public
|
|
193
|
+
public igx_query_builder_search?: string;
|
|
194
194
|
|
|
195
195
|
|
|
196
|
-
public
|
|
196
|
+
public igx_query_builder_select_all?: string;
|
|
197
197
|
|
|
198
198
|
|
|
199
|
-
public
|
|
199
|
+
public igx_query_builder_select_entity?: string;
|
|
200
200
|
|
|
201
201
|
|
|
202
|
-
public
|
|
202
|
+
public igx_query_builder_select_return_field_single?: string;
|
|
203
203
|
|
|
204
204
|
|
|
205
|
-
public
|
|
205
|
+
public igx_query_builder_select_return_fields?: string;
|
|
206
206
|
|
|
207
207
|
|
|
208
|
-
public
|
|
208
|
+
public igx_query_builder_dialog_title?: string;
|
|
209
209
|
|
|
210
210
|
|
|
211
|
-
public
|
|
211
|
+
public igx_query_builder_dialog_message?: string;
|
|
212
212
|
|
|
213
213
|
|
|
214
|
-
public
|
|
214
|
+
public igx_query_builder_dialog_checkbox_text?: string;
|
|
215
215
|
|
|
216
216
|
|
|
217
|
-
public
|
|
217
|
+
public igx_query_builder_dialog_cancel?: string;
|
|
218
218
|
|
|
219
219
|
|
|
220
|
-
public
|
|
220
|
+
public igx_query_builder_dialog_confirm?: string;
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
public
|
|
223
|
+
public igx_query_builder_drop_ghost_text?: string;
|
|
224
224
|
|
|
225
225
|
}
|
|
226
226
|
|
|
@@ -37,7 +37,7 @@ import { IgcActiveNodeChangeEventArgs } from './igc-active-node-change-event-arg
|
|
|
37
37
|
import { IgcGridToolbarExportEventArgs } from './igc-grid-toolbar-export-event-args';
|
|
38
38
|
import { IgcGridSelectionRange } from './igc-grid-selection-range';
|
|
39
39
|
import { IgcForOfDataChangeEventArgs } from './igc-for-of-data-change-event-args';
|
|
40
|
-
import {
|
|
40
|
+
import { IgcGridResourceStrings } from './igc-grid-resource-strings';
|
|
41
41
|
import { IgcGridToolbarTemplateContext } from './igc-grid-toolbar-template-context';
|
|
42
42
|
import { IgcRenderFunction } from './common';
|
|
43
43
|
import { IgcGridPaginatorTemplateContext } from './igc-grid-paginator-template-context';
|
|
@@ -125,8 +125,8 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
125
125
|
* @remarks
|
|
126
126
|
* By default it uses the root grid resources.
|
|
127
127
|
*/
|
|
128
|
-
public set resourceStrings(value:
|
|
129
|
-
public get resourceStrings():
|
|
128
|
+
public set resourceStrings(value: IgcGridResourceStrings);
|
|
129
|
+
public get resourceStrings(): IgcGridResourceStrings;
|
|
130
130
|
|
|
131
131
|
|
|
132
132
|
|
|
@@ -7,34 +7,34 @@
|
|
|
7
7
|
{
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
public
|
|
10
|
+
public igx_grid_required_validation_error?: string;
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
public
|
|
13
|
+
public igx_grid_min_validation_error?: string;
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
public
|
|
16
|
+
public igx_grid_max_validation_error?: string;
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
public
|
|
19
|
+
public igx_grid_min_length_validation_error?: string;
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
public
|
|
22
|
+
public igx_grid_max_length_validation_error?: string;
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
public
|
|
25
|
+
public igx_grid_email_validation_error?: string;
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
public
|
|
28
|
+
public igx_grid_pattern_validation_error?: string;
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
public
|
|
31
|
+
public igx_grid_mask_validation_error?: string;
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
public
|
|
34
|
+
public igx_grid_url_validation_error?: string;
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
public
|
|
37
|
+
public igx_grid_disabled_date_validation_error?: string;
|
|
38
38
|
|
|
39
39
|
}
|
|
40
40
|
|
package/grids/lib/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ export type { IgcGridStateBaseDirective } from "./igc-grid-state-base-directive"
|
|
|
3
3
|
export type { IgcGridStateInfo } from "./igc-grid-state-info";
|
|
4
4
|
export { IgcActionStripComponent } from "./igc-action-strip-component";
|
|
5
5
|
export type { IgcActionStripResourceStrings } from "./igc-action-strip-resource-strings";
|
|
6
|
-
export type { IgcPrefixedResourceStrings } from "./igc-prefixed-resource-strings";
|
|
7
6
|
export { IgcBooleanFilteringOperand } from "./igc-boolean-filtering-operand";
|
|
8
7
|
export { IgcFilteringOperand } from "./igc-filtering-operand";
|
|
9
8
|
export { IgcDateFilteringOperand } from "./igc-date-filtering-operand";
|
|
@@ -216,4 +215,24 @@ export type { IgcValidationErrors } from "./igc-validation-errors";
|
|
|
216
215
|
export { HorizontalAlignment } from "./horizontal-alignment";
|
|
217
216
|
export { VerticalAlignment } from "./vertical-alignment";
|
|
218
217
|
export type { IgcSize } from "./igc-size";
|
|
219
|
-
export type { TemplateContent, IgcRenderFunction, Point } from "./common";
|
|
218
|
+
export type { TemplateContent, IgcRenderFunction, Point } from "./common";
|
|
219
|
+
export {
|
|
220
|
+
type IResourceStrings,
|
|
221
|
+
type IActionStripResourceStrings,
|
|
222
|
+
type IBannerResourceStrings,
|
|
223
|
+
type ICalendarResourceStrings,
|
|
224
|
+
type ICarouselResourceStrings,
|
|
225
|
+
type IChipResourceStrings,
|
|
226
|
+
type IComboResourceStrings,
|
|
227
|
+
type IDatePickerResourceStrings,
|
|
228
|
+
type IDateRangePickerResourceStrings,
|
|
229
|
+
type IGridResourceStrings,
|
|
230
|
+
type IFileInputResourceStrings,
|
|
231
|
+
type IListResourceStrings,
|
|
232
|
+
type IPaginatorResourceStrings,
|
|
233
|
+
type IQueryBuilderResourceStrings,
|
|
234
|
+
type ITimePickerResourceStrings,
|
|
235
|
+
type ITreeResourceStrings,
|
|
236
|
+
registerI18n,
|
|
237
|
+
setCurrentI18n
|
|
238
|
+
} from 'igniteui-i18n-core';
|