ets-fe-ng-sdk 20.3.8 → 20.3.10

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/index.d.ts CHANGED
@@ -58,6 +58,197 @@ import { MatExpansionModule } from '@angular/material/expansion';
58
58
  import * as i4 from '@angular/cdk/clipboard';
59
59
  import * as i4$1 from '@angular/material/progress-bar';
60
60
 
61
+ declare global {
62
+ interface String {
63
+ /**
64
+ * Removes the specified character from the string
65
+ * @param character Character to remove (defaults to '/')
66
+ * @returns String with the character removed
67
+ */
68
+ stripChar(character?: string): string;
69
+ /**
70
+ * Removes the specified character from the end of the string if present
71
+ * @param character Character to remove from the end (defaults to '/')
72
+ * @returns String with the character removed from the end if it was present
73
+ */
74
+ lastStripChar(character?: string): string;
75
+ /**
76
+ * Remove null from string content.
77
+ * @returns String with null values removed
78
+ */
79
+ removeNull(): string;
80
+ /**
81
+ * Removes all instances of a character from a string
82
+ * @param character Character to remove (defaults to '/')
83
+ * @param replacement String to replace with (defaults to '')
84
+ * @returns String with all instances of the character removed or replaced
85
+ */
86
+ unChar(character?: string, replacement?: string): string;
87
+ /**
88
+ * Converts Pascal case to Sentence case
89
+ * @example 'smallBook'.toSentenceCase() = 'Small Book'
90
+ * @returns String in sentence case
91
+ */
92
+ toSentenceCase(): string;
93
+ /**
94
+ * Replaces all occurrences of a substring
95
+ * @param character Character to replace (defaults to '/')
96
+ * @param replacement String to replace with (defaults to '')
97
+ * @returns The string after replacement
98
+ */
99
+ replaceAllSubStr(character?: string, replacement?: string): string;
100
+ /**
101
+ * Adds a character at the beginning of a string until it reaches the expected length
102
+ * @param character Character to add before string
103
+ * @param expectedLength Expected length of the string after addition of the character
104
+ * @returns String with added preceding characters
105
+ */
106
+ addPrecedingChar(character: string, expectedLength: number): string;
107
+ }
108
+ interface Array<T> {
109
+ merge(): T;
110
+ /**
111
+ * @param index The index to select from the end.
112
+ * @defaultValue 0
113
+ * @example ['a','b','c'].reverseIndex(1) returns 'b'
114
+ * @example ['a','b','c','d','e'].reverseIndex(2) returns 'c'
115
+ */
116
+ reverseIndex(index?: number): T;
117
+ lastItem(): T;
118
+ /**
119
+ * Shuffles the content of an array
120
+ */
121
+ shuffle(): T[];
122
+ /**
123
+ * Sort by the length of the field specified in ascending order
124
+ * @param field Field name to compare with
125
+ * @param reverse Should it be in a descending order
126
+ */
127
+ sortByFieldLength(field: keyof T, reverse?: boolean): T[];
128
+ /**
129
+ *
130
+ * @param field Field name to compare with
131
+ * @param isString Is the data type of the field a string
132
+ * @param reverse Should it be in a descending order
133
+ */
134
+ sort2(field: keyof T, isString?: boolean, reverse?: boolean): T[];
135
+ /**
136
+ * Detects the data type of the field to sort by
137
+ * @param field Field name to compare with
138
+ * @param reverse Should it be in a descending order
139
+ */
140
+ sort3(field: keyof T, reverse?: boolean): T[];
141
+ /**
142
+ * Remove items from an array that don't have values in any of its fields
143
+ * @param expectedFields Fields to check for emptiness, the function will remove the rows that don't have any value in all the fields specified while keeping the rows that have at least one value
144
+ * @param config Config
145
+ * @returns The items removed
146
+ */
147
+ removeEmptyItems(expectedFields?: (keyof T)[], config?: {
148
+ /**
149
+ * Specify whether to check the value in boolean fields.
150
+ * @defaultValue `false`
151
+ */
152
+ ignoreBooleanFields?: boolean;
153
+ /**
154
+ * Specify whether to check for emptiness in the 'expectedFields' or check for emptiness in the other fields excluding the fields specified
155
+ * @defaultValue `included`
156
+ */
157
+ fieldsType?: 'included' | 'excluded';
158
+ }): T[];
159
+ /**
160
+ * Converts an array to a key value pair.
161
+ * @param keyField The field to be used as the key
162
+ * @returns An index object containing the keyField as the index key and each item of the array as value assigned to each index
163
+ */
164
+ toMap(keyField: keyof T): {
165
+ [x: string]: T;
166
+ };
167
+ /**
168
+ * Converts an array to a key value pair.
169
+ * @param keyMap Function to set the key of the map
170
+ */
171
+ toMap(keyMap: (row: T) => string | number): {
172
+ [x: string]: T;
173
+ };
174
+ /**
175
+ * Converts an array to a key value pair.
176
+ * @param keyField The field to be used as the key
177
+ * @param valueMap Function to set the values of each key in the map
178
+ * @returns An index object containing the keyField as the index key and each item of the array as value assigned to each index
179
+ */
180
+ toMap<NT>(keyField: keyof T, valueMap: (item: T) => NT): {
181
+ [x: string]: NT;
182
+ };
183
+ /**
184
+ * Groups an array by unique entries in a field.
185
+ * @param arr Array to be grouped
186
+ * @param keyField The field to be used as the key
187
+ */
188
+ groupBy(keyField: keyof T, keyMap?: (value: T) => string): {
189
+ [x: string]: T[];
190
+ };
191
+ /**
192
+ * Turns an array to a map.
193
+ */
194
+ toBooleanMap(): {
195
+ [x: string]: boolean;
196
+ };
197
+ }
198
+ interface Function {
199
+ clone: any;
200
+ }
201
+ }
202
+ declare module '@angular/forms' {
203
+ interface AbstractControl {
204
+ formattedValue?: any;
205
+ labelValue?: string;
206
+ getFormattedValue: () => any;
207
+ }
208
+ interface FormControl {
209
+ formattedValue?: string;
210
+ labelValue?: string;
211
+ getFormattedValue: () => string;
212
+ }
213
+ interface FormGroup {
214
+ formattedValue?: {
215
+ [x: string]: string[] | {
216
+ [x: string]: string;
217
+ }[];
218
+ };
219
+ getFormattedValue: () => {
220
+ [x: string]: string[] | {
221
+ [x: string]: string;
222
+ }[];
223
+ };
224
+ }
225
+ interface FormArray {
226
+ formattedValue?: string[] | {
227
+ [x: string]: string;
228
+ }[];
229
+ getFormattedValue: () => string[] | {
230
+ [x: string]: string;
231
+ }[];
232
+ }
233
+ }
234
+ declare module '@angular/router' {
235
+ interface Route {
236
+ customData?: {
237
+ miID?: string;
238
+ title?: string;
239
+ pageComponent?: {
240
+ centerHeader?: boolean;
241
+ hideHeader?: boolean;
242
+ };
243
+ };
244
+ }
245
+ }
246
+
247
+ declare namespace prototypes_d {
248
+ export {
249
+ };
250
+ }
251
+
61
252
  /**
62
253
  * A utility class for managing loading states in an application.
63
254
  * Tracks multiple concurrent loading operations and provides methods to start, stop,
@@ -2252,203 +2443,12 @@ declare namespace EVFunctions {
2252
2443
  function typeCaster<T>(value: T): T;
2253
2444
  }
2254
2445
 
2255
- declare global {
2256
- interface String {
2257
- /**
2258
- * Removes the specified character from the string
2259
- * @param character Character to remove (defaults to '/')
2260
- * @returns String with the character removed
2261
- */
2262
- stripChar(character?: string): string;
2263
- /**
2264
- * Removes the specified character from the end of the string if present
2265
- * @param character Character to remove from the end (defaults to '/')
2266
- * @returns String with the character removed from the end if it was present
2267
- */
2268
- lastStripChar(character?: string): string;
2269
- /**
2270
- * Remove null from string content.
2271
- * @returns String with null values removed
2272
- */
2273
- removeNull(): string;
2274
- /**
2275
- * Removes all instances of a character from a string
2276
- * @param character Character to remove (defaults to '/')
2277
- * @param replacement String to replace with (defaults to '')
2278
- * @returns String with all instances of the character removed or replaced
2279
- */
2280
- unChar(character?: string, replacement?: string): string;
2281
- /**
2282
- * Converts Pascal case to Sentence case
2283
- * @example 'smallBook'.toSentenceCase() = 'Small Book'
2284
- * @returns String in sentence case
2285
- */
2286
- toSentenceCase(): string;
2287
- /**
2288
- * Replaces all occurrences of a substring
2289
- * @param character Character to replace (defaults to '/')
2290
- * @param replacement String to replace with (defaults to '')
2291
- * @returns The string after replacement
2292
- */
2293
- replaceAllSubStr(character?: string, replacement?: string): string;
2294
- /**
2295
- * Adds a character at the beginning of a string until it reaches the expected length
2296
- * @param character Character to add before string
2297
- * @param expectedLength Expected length of the string after addition of the character
2298
- * @returns String with added preceding characters
2299
- */
2300
- addPrecedingChar(character: string, expectedLength: number): string;
2301
- }
2302
- interface Array<T> {
2303
- merge(): T;
2304
- /**
2305
- * @param index The index to select from the end.
2306
- * @defaultValue 0
2307
- * @example ['a','b','c'].reverseIndex(1) returns 'b'
2308
- * @example ['a','b','c','d','e'].reverseIndex(2) returns 'c'
2309
- */
2310
- reverseIndex(index?: number): T;
2311
- lastItem(): T;
2312
- /**
2313
- * Shuffles the content of an array
2314
- */
2315
- shuffle(): T[];
2316
- /**
2317
- * Sort by the length of the field specified in ascending order
2318
- * @param field Field name to compare with
2319
- * @param reverse Should it be in a descending order
2320
- */
2321
- sortByFieldLength(field: keyof T, reverse?: boolean): T[];
2322
- /**
2323
- *
2324
- * @param field Field name to compare with
2325
- * @param isString Is the data type of the field a string
2326
- * @param reverse Should it be in a descending order
2327
- */
2328
- sort2(field: keyof T, isString?: boolean, reverse?: boolean): T[];
2329
- /**
2330
- * Detects the data type of the field to sort by
2331
- * @param field Field name to compare with
2332
- * @param reverse Should it be in a descending order
2333
- */
2334
- sort3(field: keyof T, reverse?: boolean): T[];
2335
- /**
2336
- * Remove items from an array that don't have values in any of its fields
2337
- * @param expectedFields Fields to check for emptiness, the function will remove the rows that don't have any value in all the fields specified while keeping the rows that have at least one value
2338
- * @param config Config
2339
- * @returns The items removed
2340
- */
2341
- removeEmptyItems(expectedFields?: (keyof T)[], config?: {
2342
- /**
2343
- * Specify whether to check the value in boolean fields.
2344
- * @defaultValue `false`
2345
- */
2346
- ignoreBooleanFields?: boolean;
2347
- /**
2348
- * Specify whether to check for emptiness in the 'expectedFields' or check for emptiness in the other fields excluding the fields specified
2349
- * @defaultValue `included`
2350
- */
2351
- fieldsType?: 'included' | 'excluded';
2352
- }): T[];
2353
- /**
2354
- * Converts an array to a key value pair.
2355
- * @param keyField The field to be used as the key
2356
- * @returns An index object containing the keyField as the index key and each item of the array as value assigned to each index
2357
- */
2358
- toMap(keyField: keyof T): {
2359
- [x: string]: T;
2360
- };
2361
- /**
2362
- * Converts an array to a key value pair.
2363
- * @param keyMap Function to set the key of the map
2364
- */
2365
- toMap(keyMap: (row: T) => string | number): {
2366
- [x: string]: T;
2367
- };
2368
- /**
2369
- * Converts an array to a key value pair.
2370
- * @param keyField The field to be used as the key
2371
- * @param valueMap Function to set the values of each key in the map
2372
- * @returns An index object containing the keyField as the index key and each item of the array as value assigned to each index
2373
- */
2374
- toMap<NT>(keyField: keyof T, valueMap: (item: T) => NT): {
2375
- [x: string]: NT;
2376
- };
2377
- /**
2378
- * Groups an array by unique entries in a field.
2379
- * @param arr Array to be grouped
2380
- * @param keyField The field to be used as the key
2381
- */
2382
- groupBy(keyField: keyof T, keyMap?: (value: T) => string): {
2383
- [x: string]: T[];
2384
- };
2385
- /**
2386
- * Turns an array to a map.
2387
- */
2388
- toBooleanMap(): {
2389
- [x: string]: boolean;
2390
- };
2391
- }
2392
- interface Function {
2393
- clone: any;
2394
- }
2395
- }
2396
- declare module '@angular/forms' {
2397
- interface AbstractControl {
2398
- formattedValue?: any;
2399
- labelValue?: string;
2400
- getFormattedValue: () => any;
2401
- }
2402
- interface FormControl {
2403
- formattedValue?: string;
2404
- labelValue?: string;
2405
- getFormattedValue: () => string;
2406
- }
2407
- interface FormGroup {
2408
- formattedValue?: {
2409
- [x: string]: string[] | {
2410
- [x: string]: string;
2411
- }[];
2412
- };
2413
- getFormattedValue: () => {
2414
- [x: string]: string[] | {
2415
- [x: string]: string;
2416
- }[];
2417
- };
2418
- }
2419
- interface FormArray {
2420
- formattedValue?: string[] | {
2421
- [x: string]: string;
2422
- }[];
2423
- getFormattedValue: () => string[] | {
2424
- [x: string]: string;
2425
- }[];
2426
- }
2427
- }
2428
- declare module '@angular/router' {
2429
- interface Route {
2430
- customData?: {
2431
- miID?: string;
2432
- title?: string;
2433
- pageComponent?: {
2434
- centerHeader?: boolean;
2435
- hideHeader?: boolean;
2436
- };
2437
- };
2438
- }
2439
- }
2440
-
2441
- declare namespace prototypes_d {
2442
- export {
2443
- };
2444
- }
2445
-
2446
2446
  /**
2447
2447
  * Configuration class containing application-wide constants and settings
2448
2448
  */
2449
2449
  declare class Config {
2450
2450
  /** Configuration for application images */
2451
- static Images: IConfigImages;
2451
+ static Images?: IConfigImages;
2452
2452
  /**
2453
2453
  * List of options with numeric and letter identifiers
2454
2454
  * Used for multiple choice options
@@ -2470,8 +2470,7 @@ declare class Config {
2470
2470
  * Map of months by lowercase short name
2471
2471
  */
2472
2472
  static ShortMonthsMap: {
2473
- [x: string]: {
2474
- _short: string;
2473
+ [k: string]: {
2475
2474
  id: number;
2476
2475
  short: string;
2477
2476
  isoStr: string;
@@ -2482,8 +2481,7 @@ declare class Config {
2482
2481
  * Map of months by ISO string representation
2483
2482
  */
2484
2483
  static MonthsIsoStrMap: {
2485
- [x: string]: {
2486
- _short: string;
2484
+ [k: string]: {
2487
2485
  id: number;
2488
2486
  short: string;
2489
2487
  isoStr: string;
@@ -3208,7 +3206,7 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
3208
3206
  * @returns Array containing value, validators, and async validators
3209
3207
  * @template T - Type of the form control value
3210
3208
  */
3211
- formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | AsyncValidatorFn | ValidatorFn[] | AsyncValidatorFn[] | FormControlOptions | T)[];
3209
+ formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (FormControlOptions | AsyncValidatorFn | AsyncValidatorFn[] | ValidatorFn | ValidatorFn[] | T)[];
3212
3210
  /**
3213
3211
  * Navigates back to the previous page using Angular's Location service
3214
3212
  */
@@ -4904,6 +4902,8 @@ declare class InputBase<TFormGroup extends {
4904
4902
  readonly labelField: _angular_core.ModelSignal<keyof TOption | (keyof TOption)[]>;
4905
4903
  /** Field to use for option hints */
4906
4904
  readonly optionHintField: _angular_core.ModelSignal<keyof TOption>;
4905
+ readonly ctOptions: _angular_core.ModelSignal<ICodeTitle<string>[]>;
4906
+ protected readonly ctOptionsEffect: _angular_core.EffectRef;
4907
4907
  /** Preset label type for options */
4908
4908
  readonly labelType: _angular_core.ModelSignal<OptionLabelType>;
4909
4909
  /** Custom formatter function for options */
@@ -5086,7 +5086,7 @@ declare class InputBase<TFormGroup extends {
5086
5086
  */
5087
5087
  dateChanged(value: string): void;
5088
5088
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputBase<any, any, any>, never>;
5089
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputBase<any, any, any>, "ng-component", never, { "cls": { "alias": "cls"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "dontFormatAsInputSignal": { "alias": "dontFormatAsInput"; "required": false; "isSignal": true; }; "duplicateCheckSignal": { "alias": "duplicateCheck"; "required": false; "isSignal": true; }; "presetValue": { "alias": "presetValue"; "required": false; "isSignal": true; }; "endLabelSignal": { "alias": "endLabel"; "required": false; "isSignal": true; }; "endLabelTooltipSignal": { "alias": "endLabelTooltip"; "required": false; "isSignal": true; }; "idSignal": { "alias": "id"; "required": false; "isSignal": true; }; "inputContClassSignal": { "alias": "inputContClass"; "required": false; "isSignal": true; }; "labelSignal": { "alias": "label"; "required": false; "isSignal": true; }; "lblCl": { "alias": "lblCl"; "required": false; "isSignal": true; }; "light": { "alias": "light"; "required": false; "isSignal": true; }; "noFormat": { "alias": "noFormat"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readonlySignal": { "alias": "readonly"; "required": false; "isSignal": true; }; "requiredSignal": { "alias": "required"; "required": false; "isSignal": true; }; "showRequiredTagSignal": { "alias": "showRequiredTag"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "textareaRowsSignal": { "alias": "textareaRows"; "required": false; "isSignal": true; }; "translatorOptions": { "alias": "translatorOptions"; "required": false; "isSignal": true; }; "setFormattedValue": { "alias": "setFormattedValue"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "inlineHint": { "alias": "inlineHint"; "required": false; "isSignal": true; }; "autoPickValueField": { "alias": "autoPickValueField"; "required": false; "isSignal": true; }; "labelField": { "alias": "labelField"; "required": false; "isSignal": true; }; "optionHintField": { "alias": "optionHintField"; "required": false; "isSignal": true; }; "labelType": { "alias": "labelType"; "required": false; "isSignal": true; }; "optionFormatter": { "alias": "optionFormatter"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "xsmall": { "alias": "xsmall"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "_indeterminate": { "alias": "indeterminate"; "required": false; }; "maxToday": { "alias": "maxToday"; "required": false; }; "minToday": { "alias": "minToday"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "prefixSignal": { "alias": "prefix"; "required": false; "isSignal": true; }; "miniSignal": { "alias": "mini"; "required": false; "isSignal": true; }; "inpClSignal": { "alias": "inpCl"; "required": false; "isSignal": true; }; "showEmptyOptionSignal": { "alias": "showEmptyOption"; "required": false; "isSignal": true; }; "showLabelSignal": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showValidationSignal": { "alias": "showValidation"; "required": false; "isSignal": true; }; "showValidationIconSignal": { "alias": "showValidationIcon"; "required": false; "isSignal": true; }; "smallSignal": { "alias": "small"; "required": false; "isSignal": true; }; "showValidationMsgSignal": { "alias": "showValidationMsg"; "required": false; "isSignal": true; }; "stackedSignal": { "alias": "stacked"; "required": false; "isSignal": true; }; "debug": { "alias": "debug"; "required": false; "isSignal": true; }; "verbose": { "alias": "verbose"; "required": false; "isSignal": true; }; "timeType": { "alias": "timeType"; "required": false; "isSignal": true; }; "checkParentBeforeDisable": { "alias": "checkParentBeforeDisable"; "required": false; "isSignal": true; }; "clearOnDisable": { "alias": "clearOnDisable"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "_disabled": { "alias": "disabled"; "required": false; }; "_type": { "alias": "type"; "required": false; }; "maxSignal": { "alias": "max"; "required": false; "isSignal": true; }; "minSignal": { "alias": "min"; "required": false; "isSignal": true; }; "coloredSignal": { "alias": "colored"; "required": false; "isSignal": true; }; "checkedSignal": { "alias": "checkedSignal"; "required": false; "isSignal": true; }; }, { "form": "formChange"; "labelField": "labelFieldChange"; "optionHintField": "optionHintFieldChange"; "labelType": "labelTypeChange"; "name": "nameChange"; "valueField": "valueFieldChange"; "prefixSignal": "prefixChange"; "miniSignal": "miniChange"; "inpClSignal": "inpClChange"; "showEmptyOptionSignal": "showEmptyOptionChange"; "showLabelSignal": "showLabelChange"; "showValidationSignal": "showValidationChange"; "showValidationIconSignal": "showValidationIconChange"; "smallSignal": "smallChange"; "showValidationMsgSignal": "showValidationMsgChange"; "checkParentBeforeDisable": "checkParentBeforeDisableChange"; "maxSignal": "maxChange"; "minSignal": "minChange"; "mchange": "mchange"; "mSelectOptionChange": "mSelectOptionChange"; }, never, never, true, never>;
5089
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputBase<any, any, any>, "ng-component", never, { "cls": { "alias": "cls"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "dontFormatAsInputSignal": { "alias": "dontFormatAsInput"; "required": false; "isSignal": true; }; "duplicateCheckSignal": { "alias": "duplicateCheck"; "required": false; "isSignal": true; }; "presetValue": { "alias": "presetValue"; "required": false; "isSignal": true; }; "endLabelSignal": { "alias": "endLabel"; "required": false; "isSignal": true; }; "endLabelTooltipSignal": { "alias": "endLabelTooltip"; "required": false; "isSignal": true; }; "idSignal": { "alias": "id"; "required": false; "isSignal": true; }; "inputContClassSignal": { "alias": "inputContClass"; "required": false; "isSignal": true; }; "labelSignal": { "alias": "label"; "required": false; "isSignal": true; }; "lblCl": { "alias": "lblCl"; "required": false; "isSignal": true; }; "light": { "alias": "light"; "required": false; "isSignal": true; }; "noFormat": { "alias": "noFormat"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readonlySignal": { "alias": "readonly"; "required": false; "isSignal": true; }; "requiredSignal": { "alias": "required"; "required": false; "isSignal": true; }; "showRequiredTagSignal": { "alias": "showRequiredTag"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "textareaRowsSignal": { "alias": "textareaRows"; "required": false; "isSignal": true; }; "translatorOptions": { "alias": "translatorOptions"; "required": false; "isSignal": true; }; "setFormattedValue": { "alias": "setFormattedValue"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "inlineHint": { "alias": "inlineHint"; "required": false; "isSignal": true; }; "autoPickValueField": { "alias": "autoPickValueField"; "required": false; "isSignal": true; }; "labelField": { "alias": "labelField"; "required": false; "isSignal": true; }; "optionHintField": { "alias": "optionHintField"; "required": false; "isSignal": true; }; "ctOptions": { "alias": "ctOptions"; "required": false; "isSignal": true; }; "labelType": { "alias": "labelType"; "required": false; "isSignal": true; }; "optionFormatter": { "alias": "optionFormatter"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "xsmall": { "alias": "xsmall"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "_indeterminate": { "alias": "indeterminate"; "required": false; }; "maxToday": { "alias": "maxToday"; "required": false; }; "minToday": { "alias": "minToday"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "prefixSignal": { "alias": "prefix"; "required": false; "isSignal": true; }; "miniSignal": { "alias": "mini"; "required": false; "isSignal": true; }; "inpClSignal": { "alias": "inpCl"; "required": false; "isSignal": true; }; "showEmptyOptionSignal": { "alias": "showEmptyOption"; "required": false; "isSignal": true; }; "showLabelSignal": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showValidationSignal": { "alias": "showValidation"; "required": false; "isSignal": true; }; "showValidationIconSignal": { "alias": "showValidationIcon"; "required": false; "isSignal": true; }; "smallSignal": { "alias": "small"; "required": false; "isSignal": true; }; "showValidationMsgSignal": { "alias": "showValidationMsg"; "required": false; "isSignal": true; }; "stackedSignal": { "alias": "stacked"; "required": false; "isSignal": true; }; "debug": { "alias": "debug"; "required": false; "isSignal": true; }; "verbose": { "alias": "verbose"; "required": false; "isSignal": true; }; "timeType": { "alias": "timeType"; "required": false; "isSignal": true; }; "checkParentBeforeDisable": { "alias": "checkParentBeforeDisable"; "required": false; "isSignal": true; }; "clearOnDisable": { "alias": "clearOnDisable"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "_disabled": { "alias": "disabled"; "required": false; }; "_type": { "alias": "type"; "required": false; }; "maxSignal": { "alias": "max"; "required": false; "isSignal": true; }; "minSignal": { "alias": "min"; "required": false; "isSignal": true; }; "coloredSignal": { "alias": "colored"; "required": false; "isSignal": true; }; "checkedSignal": { "alias": "checkedSignal"; "required": false; "isSignal": true; }; }, { "form": "formChange"; "labelField": "labelFieldChange"; "optionHintField": "optionHintFieldChange"; "ctOptions": "ctOptionsChange"; "labelType": "labelTypeChange"; "name": "nameChange"; "valueField": "valueFieldChange"; "prefixSignal": "prefixChange"; "miniSignal": "miniChange"; "inpClSignal": "inpClChange"; "showEmptyOptionSignal": "showEmptyOptionChange"; "showLabelSignal": "showLabelChange"; "showValidationSignal": "showValidationChange"; "showValidationIconSignal": "showValidationIconChange"; "smallSignal": "smallChange"; "showValidationMsgSignal": "showValidationMsgChange"; "checkParentBeforeDisable": "checkParentBeforeDisableChange"; "maxSignal": "maxChange"; "minSignal": "minChange"; "mchange": "mchange"; "mSelectOptionChange": "mSelectOptionChange"; }, never, never, true, never>;
5090
5090
  }
5091
5091
  type InputTheme$1 = 1 | 2;
5092
5092
 
@@ -5660,7 +5660,7 @@ declare class BtnComponent implements OnInit {
5660
5660
  /** CSS class for the button */
5661
5661
  readonly _mclass: _angular_core.WritableSignal<string>;
5662
5662
  /** HTML button type (submit, button, reset) */
5663
- readonly actionType: _angular_core.InputSignal<"submit" | "reset" | "button">;
5663
+ readonly actionType: _angular_core.InputSignal<"submit" | "button" | "reset">;
5664
5664
  /** Enables animation effect on the button */
5665
5665
  readonly animate: _angular_core.InputSignal<boolean>;
5666
5666
  /** Excludes this button from logging when true */
@@ -7983,7 +7983,7 @@ declare class InfoDialogComponent implements OnInit {
7983
7983
  * @param status Status code (0=danger, 1=success, 2=info, 3=warning)
7984
7984
  * @returns CSS class name corresponding to the status
7985
7985
  */
7986
- cls: (status?: 0 | 1 | 2 | 3) => "" | "info" | "danger" | "success" | "warning";
7986
+ cls: (status?: 0 | 1 | 2 | 3) => "info" | "danger" | "success" | "" | "warning";
7987
7987
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
7988
7988
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
7989
7989
  }
@@ -8860,7 +8860,7 @@ declare class ResizeGridPipe implements PipeTransform {
8860
8860
  */
8861
8861
  declare class IndexCompLayoutComponent {
8862
8862
  /** Number of columns in the grid layout */
8863
- readonly grid: InputSignal<2 | 1 | 4 | 3 | 5 | 6 | "auto">;
8863
+ readonly grid: InputSignal<2 | 1 | 3 | 4 | 5 | 6 | "auto">;
8864
8864
  /** Whether to show the action buttons */
8865
8865
  readonly showButtons: InputSignal<boolean>;
8866
8866
  /** Whether to hide the clone button */
@@ -9660,8 +9660,8 @@ declare class PhoneNumberComponent extends InputBasicComponent {
9660
9660
  getExtension(number: string, iso2: string | undefined): string;
9661
9661
  getNumberType(number: string, iso2: string | undefined): number;
9662
9662
  getValidationError(number: string, iso2: string | undefined): number;
9663
- isPossibleNumber(number: string, iso2: string | undefined, numberType?: ("UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
9664
- isValidNumber(number: string, iso2: string | undefined, numberType?: ("UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
9663
+ isPossibleNumber(number: string, iso2: string | undefined, numberType?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
9664
+ isValidNumber(number: string, iso2: string | undefined, numberType?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
9665
9665
  numberFormat: {
9666
9666
  NATIONAL: number;
9667
9667
  INTERNATIONAL: number;
@@ -9672,12 +9672,12 @@ declare class PhoneNumberComponent extends InputBasicComponent {
9672
9672
  };
9673
9673
  }>;
9674
9674
  nationalMode?: boolean;
9675
- placeholderNumberType?: "UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP";
9675
+ placeholderNumberType?: "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP";
9676
9676
  showFlags?: boolean;
9677
9677
  separateDialCode?: boolean;
9678
9678
  strictMode?: boolean;
9679
9679
  useFullscreenPopup?: boolean;
9680
- validationNumberTypes?: ("UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP")[] | null;
9680
+ validationNumberTypes?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP")[] | null;
9681
9681
  }>;
9682
9682
  /**
9683
9683
  * Initializes the component by adding a custom validator to the form control.
@@ -10238,6 +10238,7 @@ declare abstract class TableBaseComponent<TItem extends IObjectLiteral> {
10238
10238
  readonly rowOptionsMap: _angular_core.InputSignal<(row: TItem) => (IRowOption<TItem> | null)[]>;
10239
10239
  /** Whether to center the content of table cells */
10240
10240
  readonly centerCells: _angular_core.InputSignal<boolean>;
10241
+ readonly enableRowClick: _angular_core.InputSignal<boolean>;
10241
10242
  /** Whether to apply rounded corners to the table */
10242
10243
  readonly curvy: _angular_core.InputSignal<boolean>;
10243
10244
  /** Whether to filter out duplicate rows */
@@ -10280,8 +10281,6 @@ declare abstract class TableBaseComponent<TItem extends IObjectLiteral> {
10280
10281
  readonly showAdditionalColumns: _angular_core.InputSignal<boolean>;
10281
10282
  /** Whether to show export functionality */
10282
10283
  readonly showExport: _angular_core.InputSignal<boolean>;
10283
- /** Whether to show pointer cursor on rows */
10284
- readonly showRowPointer: _angular_core.InputSignal<boolean>;
10285
10284
  /** Whether to use smaller font sizes */
10286
10285
  readonly smallerFonts: _angular_core.InputSignal<boolean>;
10287
10286
  /** Whether to apply striped styling to rows */
@@ -10441,7 +10440,7 @@ declare abstract class TableBaseComponent<TItem extends IObjectLiteral> {
10441
10440
  /** Triggers change detection to refresh the UI */
10442
10441
  refreshUI(): void;
10443
10442
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableBaseComponent<any>, never>;
10444
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableBaseComponent<any>, "ng-component", never, { "_rowOptions": { "alias": "rowOptions"; "required": false; "isSignal": true; }; "rowOptionsMap": { "alias": "rowOptionsMap"; "required": false; "isSignal": true; }; "centerCells": { "alias": "centerCells"; "required": false; "isSignal": true; }; "curvy": { "alias": "curvy"; "required": false; "isSignal": true; }; "distinct": { "alias": "distinct"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "isExpandable": { "alias": "isExpandable"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "isDisabledFunc": { "alias": "isDisabledFunc"; "required": false; "isSignal": true; }; "noItemTxt": { "alias": "noItemTxt"; "required": false; "isSignal": true; }; "nowrap": { "alias": "nowrap"; "required": false; "isSignal": true; }; "debug": { "alias": "debug"; "required": false; "isSignal": true; }; "expandedRowTemplate": { "alias": "expandedRowTemplate"; "required": false; "isSignal": true; }; "orderDirection": { "alias": "orderDirection"; "required": false; "isSignal": true; }; "orderField": { "alias": "orderField"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "customTemplates": { "alias": "customTemplates"; "required": false; "isSignal": true; }; "startSectionTemplate": { "alias": "startSectionTemplate"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "placeSelectionAtRight": { "alias": "placeSelectionAtRight"; "required": false; "isSignal": true; }; "showAdditionalColumns": { "alias": "showAdditionalColumns"; "required": false; "isSignal": true; }; "showExport": { "alias": "showExport"; "required": false; "isSignal": true; }; "showRowPointer": { "alias": "showRowPointer"; "required": false; "isSignal": true; }; "smallerFonts": { "alias": "smallerFonts"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "tableContainerClass": { "alias": "tableContainerClass"; "required": false; "isSignal": true; }; "useSelection": { "alias": "useSelection"; "required": false; "isSignal": true; }; "formSchemaToColumns": { "alias": "formSchemaToColumns"; "required": false; "isSignal": true; }; "uploadSchemaToColumns": { "alias": "uploadSchemaToColumns"; "required": false; "isSignal": true; }; "_displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; "useCustomLabels": { "alias": "useCustomLabels"; "required": false; "isSignal": true; }; }, { "clickedExpandRow": "clickedExpandRow"; "_rowClick": "rowClick"; "emitCheckbox": "emitCheckbox"; "selectionChanged": "selectionChanged"; "useCustomLabels": "useCustomLabelsChange"; }, never, never, true, never>;
10443
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableBaseComponent<any>, "ng-component", never, { "_rowOptions": { "alias": "rowOptions"; "required": false; "isSignal": true; }; "rowOptionsMap": { "alias": "rowOptionsMap"; "required": false; "isSignal": true; }; "centerCells": { "alias": "centerCells"; "required": false; "isSignal": true; }; "enableRowClick": { "alias": "enableRowClick"; "required": false; "isSignal": true; }; "curvy": { "alias": "curvy"; "required": false; "isSignal": true; }; "distinct": { "alias": "distinct"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "isExpandable": { "alias": "isExpandable"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "isDisabledFunc": { "alias": "isDisabledFunc"; "required": false; "isSignal": true; }; "noItemTxt": { "alias": "noItemTxt"; "required": false; "isSignal": true; }; "nowrap": { "alias": "nowrap"; "required": false; "isSignal": true; }; "debug": { "alias": "debug"; "required": false; "isSignal": true; }; "expandedRowTemplate": { "alias": "expandedRowTemplate"; "required": false; "isSignal": true; }; "orderDirection": { "alias": "orderDirection"; "required": false; "isSignal": true; }; "orderField": { "alias": "orderField"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "customTemplates": { "alias": "customTemplates"; "required": false; "isSignal": true; }; "startSectionTemplate": { "alias": "startSectionTemplate"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "placeSelectionAtRight": { "alias": "placeSelectionAtRight"; "required": false; "isSignal": true; }; "showAdditionalColumns": { "alias": "showAdditionalColumns"; "required": false; "isSignal": true; }; "showExport": { "alias": "showExport"; "required": false; "isSignal": true; }; "smallerFonts": { "alias": "smallerFonts"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "tableContainerClass": { "alias": "tableContainerClass"; "required": false; "isSignal": true; }; "useSelection": { "alias": "useSelection"; "required": false; "isSignal": true; }; "formSchemaToColumns": { "alias": "formSchemaToColumns"; "required": false; "isSignal": true; }; "uploadSchemaToColumns": { "alias": "uploadSchemaToColumns"; "required": false; "isSignal": true; }; "_displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; "useCustomLabels": { "alias": "useCustomLabels"; "required": false; "isSignal": true; }; }, { "clickedExpandRow": "clickedExpandRow"; "_rowClick": "rowClick"; "emitCheckbox": "emitCheckbox"; "selectionChanged": "selectionChanged"; "useCustomLabels": "useCustomLabelsChange"; }, never, never, true, never>;
10445
10444
  }
10446
10445
  /**
10447
10446
  * Extended TableCol with additional properties for hover functionality
@@ -10496,7 +10495,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10496
10495
  readonly form: FormGroup<{
10497
10496
  pageNumber: FormControl<number>;
10498
10497
  sortBy: FormControl<keyof TItem>;
10499
- sortDirection: FormControl<"" | "DESC" | "ASC">;
10498
+ sortDirection: FormControl<"" | "ASC" | "DESC">;
10500
10499
  pageSize: FormControl<number>;
10501
10500
  }>;
10502
10501
  /**
@@ -10505,7 +10504,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10505
10504
  readonly allQueryData: _angular_core.Signal<{
10506
10505
  pageNumber: number;
10507
10506
  sortBy: keyof TItem;
10508
- sortDirection: "" | "DESC" | "ASC";
10507
+ sortDirection: "" | "ASC" | "DESC";
10509
10508
  pageSize: number;
10510
10509
  }>;
10511
10510
  /**
@@ -10514,7 +10513,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10514
10513
  readonly formValue: _angular_core.Signal<{
10515
10514
  pageNumber: number;
10516
10515
  sortBy: keyof TItem;
10517
- sortDirection: "" | "DESC" | "ASC";
10516
+ sortDirection: "" | "ASC" | "DESC";
10518
10517
  pageSize: number;
10519
10518
  }>;
10520
10519
  /**
@@ -11015,7 +11014,7 @@ declare class GetColFormattedPipe implements PipeTransform {
11015
11014
  * @param col - The column configuration
11016
11015
  * @returns An observable containing the formatted value
11017
11016
  */
11018
- transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
11017
+ transform(row: any, col: TableCol): Promise<string> | rxjs.Observable<any>;
11019
11018
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedPipe, never>;
11020
11019
  static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedPipe, "getColFormatted", true>;
11021
11020
  }
@@ -11030,7 +11029,7 @@ declare class GetColFormattedEPipe implements PipeTransform {
11030
11029
  * @param col - The column configuration
11031
11030
  * @returns An observable containing the formatted value
11032
11031
  */
11033
- transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
11032
+ transform(row: any, col: TableCol): Promise<string> | rxjs.Observable<any>;
11034
11033
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
11035
11034
  static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
11036
11035
  }
@@ -13902,6 +13901,7 @@ declare class FindItemComponent<TQuery extends IObjectLiteral = any, TRow extend
13902
13901
  readonly id: _angular_core.InputSignal<string>;
13903
13902
  /** Whether to automatically order form fields */
13904
13903
  readonly autoOrder: _angular_core.InputSignal<boolean>;
13904
+ readonly enableRowClick: _angular_core.InputSignal<boolean>;
13905
13905
  /** Text to display on the search button */
13906
13906
  readonly searchButtonText: _angular_core.InputSignal<string>;
13907
13907
  /** Icon to display on the search button */
@@ -14101,7 +14101,7 @@ declare class FindItemComponent<TQuery extends IObjectLiteral = any, TRow extend
14101
14101
  startLoader(): void;
14102
14102
  stopLoader(): void;
14103
14103
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FindItemComponent<any, any>, never>;
14104
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FindItemComponent<any, any>, "app-find-item,find-item", never, { "autoFormatSchema": { "alias": "autoFormatSchema"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "autoOrder": { "alias": "autoOrder"; "required": false; "isSignal": true; }; "searchButtonText": { "alias": "searchButtonText"; "required": false; "isSignal": true; }; "searchButtonIcon": { "alias": "searchButtonIcon"; "required": false; "isSignal": true; }; "centerCells": { "alias": "centerCells"; "required": false; "isSignal": true; }; "_displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; "gridClass": { "alias": "gridClass"; "required": false; "isSignal": true; }; "hideForm": { "alias": "hideForm"; "required": false; "isSignal": true; }; "customTableCellTemplates": { "alias": "customTableCellTemplates"; "required": false; "isSignal": true; }; "expandedRowTemplate": { "alias": "expandedRowTemplate"; "required": false; "isSignal": true; }; "rowOptionsMap": { "alias": "rowOptionsMap"; "required": false; "isSignal": true; }; "isExpandable": { "alias": "isExpandable"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "nowrap": { "alias": "nowrap"; "required": false; "isSignal": true; }; "options": { "alias": "rowOptions"; "required": false; "isSignal": true; }; "orderDirection": { "alias": "orderDirection"; "required": false; "isSignal": true; }; "orderField": { "alias": "orderField"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "searchFunction": { "alias": "searchFunction"; "required": false; "isSignal": true; }; "showData": { "alias": "showData"; "required": false; "isSignal": true; }; "searchIfNoQuery": { "alias": "searchIfNoQuery"; "required": false; "isSignal": true; }; "isCompact": { "alias": "isCompact"; "required": false; "isSignal": true; }; "showExport": { "alias": "showExport"; "required": false; "isSignal": true; }; "showFilter": { "alias": "showFilter"; "required": false; "isSignal": true; }; "showRefreshBtn": { "alias": "showRefreshBtn"; "required": false; "isSignal": true; }; "useStaticLoader": { "alias": "useStaticLoader"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "searchPromptText": { "alias": "searchPromptText"; "required": false; "isSignal": true; }; "startSectionTemplate": { "alias": "startSectionTemplate"; "required": false; "isSignal": true; }; "showSearchBtn": { "alias": "showSearchBtn"; "required": false; "isSignal": true; }; "showClearBtn": { "alias": "showClearBtn"; "required": false; "isSignal": true; }; "showFormError": { "alias": "showFormError"; "required": false; "isSignal": true; }; "showValidationMsg": { "alias": "showValidationMsg"; "required": false; "isSignal": true; }; "createBtnRoute": { "alias": "createBtnRoute"; "required": false; "isSignal": true; }; "showAdditionalColumns": { "alias": "showAdditionalColumns"; "required": false; "isSignal": true; }; "smallerFonts": { "alias": "smallerFonts"; "required": false; "isSignal": true; }; "useSelection": { "alias": "useSelection"; "required": false; "isSignal": true; }; "initialQuery": { "alias": "initialQuery"; "required": false; "isSignal": true; }; "createButton": { "alias": "createButton"; "required": false; "isSignal": true; }; "_formSchema": { "alias": "formSchema"; "required": false; }; "searchObservableFunc": { "alias": "searchObservableFunc"; "required": false; "isSignal": true; }; }, { "initialQuery": "initialQueryChange"; "_rowClick": "rowClick"; "clickedExpandRow": "clickedExpandRow"; "clickedCreate": "clickedCreate"; }, never, ["[tablePanel]"], true, never>;
14104
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FindItemComponent<any, any>, "app-find-item,find-item", never, { "autoFormatSchema": { "alias": "autoFormatSchema"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "autoOrder": { "alias": "autoOrder"; "required": false; "isSignal": true; }; "enableRowClick": { "alias": "enableRowClick"; "required": false; "isSignal": true; }; "searchButtonText": { "alias": "searchButtonText"; "required": false; "isSignal": true; }; "searchButtonIcon": { "alias": "searchButtonIcon"; "required": false; "isSignal": true; }; "centerCells": { "alias": "centerCells"; "required": false; "isSignal": true; }; "_displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; "gridClass": { "alias": "gridClass"; "required": false; "isSignal": true; }; "hideForm": { "alias": "hideForm"; "required": false; "isSignal": true; }; "customTableCellTemplates": { "alias": "customTableCellTemplates"; "required": false; "isSignal": true; }; "expandedRowTemplate": { "alias": "expandedRowTemplate"; "required": false; "isSignal": true; }; "rowOptionsMap": { "alias": "rowOptionsMap"; "required": false; "isSignal": true; }; "isExpandable": { "alias": "isExpandable"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "nowrap": { "alias": "nowrap"; "required": false; "isSignal": true; }; "options": { "alias": "rowOptions"; "required": false; "isSignal": true; }; "orderDirection": { "alias": "orderDirection"; "required": false; "isSignal": true; }; "orderField": { "alias": "orderField"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "searchFunction": { "alias": "searchFunction"; "required": false; "isSignal": true; }; "showData": { "alias": "showData"; "required": false; "isSignal": true; }; "searchIfNoQuery": { "alias": "searchIfNoQuery"; "required": false; "isSignal": true; }; "isCompact": { "alias": "isCompact"; "required": false; "isSignal": true; }; "showExport": { "alias": "showExport"; "required": false; "isSignal": true; }; "showFilter": { "alias": "showFilter"; "required": false; "isSignal": true; }; "showRefreshBtn": { "alias": "showRefreshBtn"; "required": false; "isSignal": true; }; "useStaticLoader": { "alias": "useStaticLoader"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "searchPromptText": { "alias": "searchPromptText"; "required": false; "isSignal": true; }; "startSectionTemplate": { "alias": "startSectionTemplate"; "required": false; "isSignal": true; }; "showSearchBtn": { "alias": "showSearchBtn"; "required": false; "isSignal": true; }; "showClearBtn": { "alias": "showClearBtn"; "required": false; "isSignal": true; }; "showFormError": { "alias": "showFormError"; "required": false; "isSignal": true; }; "showValidationMsg": { "alias": "showValidationMsg"; "required": false; "isSignal": true; }; "createBtnRoute": { "alias": "createBtnRoute"; "required": false; "isSignal": true; }; "showAdditionalColumns": { "alias": "showAdditionalColumns"; "required": false; "isSignal": true; }; "smallerFonts": { "alias": "smallerFonts"; "required": false; "isSignal": true; }; "useSelection": { "alias": "useSelection"; "required": false; "isSignal": true; }; "initialQuery": { "alias": "initialQuery"; "required": false; "isSignal": true; }; "createButton": { "alias": "createButton"; "required": false; "isSignal": true; }; "_formSchema": { "alias": "formSchema"; "required": false; }; "searchObservableFunc": { "alias": "searchObservableFunc"; "required": false; "isSignal": true; }; }, { "initialQuery": "initialQueryChange"; "_rowClick": "rowClick"; "clickedExpandRow": "clickedExpandRow"; "clickedCreate": "clickedCreate"; }, never, ["[tablePanel]"], true, never>;
14105
14105
  }
14106
14106
  /**
14107
14107
  * Interface for search form schema