cps-ui-kit 0.150.0 → 0.152.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.
Files changed (69) hide show
  1. package/README.md +1 -0
  2. package/esm2020/lib/components/cps-autocomplete/cps-autocomplete.component.mjs +85 -23
  3. package/esm2020/lib/components/cps-button-toggle/cps-button-toggle.component.mjs +6 -6
  4. package/esm2020/lib/components/cps-checkbox/cps-checkbox.component.mjs +3 -3
  5. package/esm2020/lib/components/cps-chip/cps-chip.component.mjs +2 -2
  6. package/esm2020/lib/components/cps-datepicker/cps-datepicker.component.mjs +6 -6
  7. package/esm2020/lib/components/cps-expansion-panel/cps-expansion-panel.component.mjs +3 -3
  8. package/esm2020/lib/components/cps-info-circle/cps-info-circle.component.mjs +2 -2
  9. package/esm2020/lib/components/cps-input/cps-input.component.mjs +5 -5
  10. package/esm2020/lib/components/cps-loader/cps-loader.component.mjs +2 -2
  11. package/esm2020/lib/components/cps-menu/cps-menu.component.mjs +4 -4
  12. package/esm2020/lib/components/cps-paginator/cps-paginator.component.mjs +3 -3
  13. package/esm2020/lib/components/cps-radio-group/cps-radio-button/cps-radio-button.component.mjs +3 -3
  14. package/esm2020/lib/components/cps-radio-group/cps-radio-group.component.mjs +4 -4
  15. package/esm2020/lib/components/cps-select/cps-select.component.mjs +7 -7
  16. package/esm2020/lib/components/cps-sidebar-menu/cps-sidebar-menu.component.mjs +2 -2
  17. package/esm2020/lib/components/cps-tab-group/cps-tab/cps-tab.component.mjs +4 -4
  18. package/esm2020/lib/components/cps-tab-group/cps-tab-group.component.mjs +2 -2
  19. package/esm2020/lib/components/cps-table/components/internal/table-column-filter/table-column-filter.component.mjs +9 -9
  20. package/esm2020/lib/components/cps-table/components/internal/table-column-filter-constraint/table-column-filter-constraint.component.mjs +4 -4
  21. package/esm2020/lib/components/cps-table/components/internal/table-row-menu/table-row-menu.component.mjs +2 -2
  22. package/esm2020/lib/components/cps-table/cps-table.component.mjs +42 -33
  23. package/esm2020/lib/components/cps-table/directives/cps-table-column-filter.directive.mjs +9 -9
  24. package/esm2020/lib/components/cps-tag/cps-tag.component.mjs +3 -3
  25. package/esm2020/lib/components/cps-textarea/cps-textarea.component.mjs +6 -6
  26. package/esm2020/lib/components/cps-timepicker/cps-timepicker.component.mjs +351 -0
  27. package/esm2020/lib/components/cps-tree-table/cps-tree-table.component.mjs +29 -31
  28. package/esm2020/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.mjs +9 -9
  29. package/esm2020/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.mjs +7 -7
  30. package/esm2020/lib/directives/cps-tooltip.directive.mjs +3 -3
  31. package/esm2020/lib/pipes/internal/combine-labels.pipe.mjs +2 -2
  32. package/esm2020/lib/pipes/internal/label-by-value.pipe.mjs +2 -2
  33. package/esm2020/lib/services/cps-dialog/utils/cps-dialog-config.mjs +1 -1
  34. package/esm2020/public-api.mjs +2 -1
  35. package/fesm2015/cps-ui-kit.mjs +595 -173
  36. package/fesm2015/cps-ui-kit.mjs.map +1 -1
  37. package/fesm2020/cps-ui-kit.mjs +582 -172
  38. package/fesm2020/cps-ui-kit.mjs.map +1 -1
  39. package/lib/components/cps-autocomplete/cps-autocomplete.component.d.ts +38 -11
  40. package/lib/components/cps-button-toggle/cps-button-toggle.component.d.ts +3 -3
  41. package/lib/components/cps-checkbox/cps-checkbox.component.d.ts +2 -2
  42. package/lib/components/cps-chip/cps-chip.component.d.ts +1 -1
  43. package/lib/components/cps-datepicker/cps-datepicker.component.d.ts +5 -5
  44. package/lib/components/cps-expansion-panel/cps-expansion-panel.component.d.ts +2 -2
  45. package/lib/components/cps-info-circle/cps-info-circle.component.d.ts +1 -1
  46. package/lib/components/cps-input/cps-input.component.d.ts +4 -4
  47. package/lib/components/cps-loader/cps-loader.component.d.ts +1 -1
  48. package/lib/components/cps-menu/cps-menu.component.d.ts +3 -3
  49. package/lib/components/cps-paginator/cps-paginator.component.d.ts +2 -2
  50. package/lib/components/cps-radio-group/cps-radio-button/cps-radio-button.component.d.ts +2 -2
  51. package/lib/components/cps-radio-group/cps-radio-group.component.d.ts +3 -3
  52. package/lib/components/cps-select/cps-select.component.d.ts +6 -6
  53. package/lib/components/cps-sidebar-menu/cps-sidebar-menu.component.d.ts +1 -1
  54. package/lib/components/cps-tab-group/cps-tab/cps-tab.component.d.ts +3 -3
  55. package/lib/components/cps-tab-group/cps-tab-group.component.d.ts +1 -1
  56. package/lib/components/cps-table/components/internal/table-column-filter/table-column-filter.component.d.ts +8 -8
  57. package/lib/components/cps-table/components/internal/table-column-filter-constraint/table-column-filter-constraint.component.d.ts +2 -2
  58. package/lib/components/cps-table/cps-table.component.d.ts +37 -30
  59. package/lib/components/cps-table/directives/cps-table-column-filter.directive.d.ts +8 -8
  60. package/lib/components/cps-tag/cps-tag.component.d.ts +2 -2
  61. package/lib/components/cps-textarea/cps-textarea.component.d.ts +5 -5
  62. package/lib/components/cps-timepicker/cps-timepicker.component.d.ts +135 -0
  63. package/lib/components/cps-tree-table/cps-tree-table.component.d.ts +28 -30
  64. package/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.d.ts +8 -8
  65. package/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.d.ts +6 -6
  66. package/lib/directives/cps-tooltip.directive.d.ts +2 -2
  67. package/lib/services/cps-dialog/utils/cps-dialog-config.d.ts +7 -7
  68. package/package.json +1 -1
  69. package/public-api.d.ts +1 -0
@@ -40,7 +40,7 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
40
40
  */
41
41
  multiple: boolean;
42
42
  /**
43
- * Whether autocomplete is disabled.
43
+ * Determines whether autocomplete is disabled.
44
44
  * @group Props
45
45
  */
46
46
  disabled: boolean;
@@ -55,17 +55,32 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
55
55
  */
56
56
  selectAll: boolean;
57
57
  /**
58
- * Defines whether the chevron icon should be displayed.
58
+ * Determines whether the chevron icon should be displayed.
59
59
  * @group Props
60
60
  */
61
61
  showChevron: boolean;
62
+ /**
63
+ * Determines whether the options should be filtered by aliases in addition to labels.
64
+ * @group Props
65
+ */
66
+ withOptionsAliases: boolean;
67
+ /**
68
+ * Determines whether the options should be filtered by aliases in addition to labels only when no label match is found. Works only If withOptionsAliases is true.
69
+ * @group Props
70
+ */
71
+ useOptionsAliasesWhenNoMatch: boolean;
72
+ /**
73
+ * Name of the alias field of an option. Needed only if withOptionsAliases is true.
74
+ * @group Props
75
+ */
76
+ optionAlias: string;
62
77
  /**
63
78
  * When selecting elements, they will appear in a form of a chip.
64
79
  * @group Props
65
80
  */
66
81
  chips: boolean;
67
82
  /**
68
- * Whether the chips can be directly removed.
83
+ * Determines whether the chips can be directly removed.
69
84
  * @group Props
70
85
  */
71
86
  closableChips: boolean;
@@ -75,7 +90,7 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
75
90
  */
76
91
  clearable: boolean;
77
92
  /**
78
- * Whether the dropdown list should open on clear.
93
+ * Determines whether the dropdown list should open on clear.
79
94
  * @group Props
80
95
  */
81
96
  openOnClear: boolean;
@@ -85,7 +100,7 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
85
100
  */
86
101
  options: any[];
87
102
  /**
88
- * If multiple, defines whether selected options should be ordered according to the initial order of the options.
103
+ * If multiple, determines whether selected options should be ordered according to the initial order of the options.
89
104
  * @group Props
90
105
  */
91
106
  keepInitialOrder: boolean;
@@ -110,7 +125,7 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
110
125
  */
111
126
  hideDetails: boolean;
112
127
  /**
113
- * Whether the component should have persistent clear icon.
128
+ * Determines whether the component should have persistent clear icon.
114
129
  * @group Props
115
130
  */
116
131
  persistentClear: boolean;
@@ -135,12 +150,12 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
135
150
  */
136
151
  emptyMessage: string;
137
152
  /**
138
- * Defines whether the empty message should be displayed.
153
+ * Determines whether the empty message should be displayed.
139
154
  * @group Props
140
155
  */
141
156
  showEmptyMessage: boolean;
142
157
  /**
143
- * Whether only the elements within scrollable area should be added into the DOM.
158
+ * Determines whether only the elements within scrollable area should be added into the DOM.
144
159
  * @group Props
145
160
  */
146
161
  virtualScroll: boolean;
@@ -149,6 +164,11 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
149
164
  * @group Props
150
165
  */
151
166
  numToleratedItems: number;
167
+ /**
168
+ * Externally set error message.
169
+ * @group Props
170
+ */
171
+ externalError: string;
152
172
  /**
153
173
  * When it is not an empty string, an info icon is displayed to show text for more info.
154
174
  * @group Props
@@ -165,7 +185,7 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
165
185
  */
166
186
  infoTooltipMaxWidth: number | string;
167
187
  /**
168
- * Whether the infoTooltip is persistent.
188
+ * Determines whether the infoTooltip is persistent.
169
189
  * @group Props
170
190
  */
171
191
  infoTooltipPersistent: boolean;
@@ -192,6 +212,12 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
192
212
  * @group Emits
193
213
  */
194
214
  valueChanged: EventEmitter<any>;
215
+ /**
216
+ * Callback to invoke when the component loses focus.
217
+ * @param {any}
218
+ * @group Emits
219
+ */
220
+ blurred: EventEmitter<any>;
195
221
  autocompleteBox: ElementRef;
196
222
  autocompleteContainer: ElementRef;
197
223
  virtualList: VirtualScroller;
@@ -210,11 +236,12 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
210
236
  virtualScrollItemSize: number;
211
237
  autocompleteBoxWidth: number;
212
238
  resizeObserver: ResizeObserver;
239
+ isTimePickerField: boolean;
213
240
  constructor(_control: NgControl, _labelByValue: LabelByValuePipe);
214
241
  ngOnInit(): void;
215
242
  ngAfterViewInit(): void;
216
243
  ngOnDestroy(): void;
217
- select(option: any, byValue: boolean): void;
244
+ select(option: any, byValue: boolean, needClearInput?: boolean, needFocusInput?: boolean): void;
218
245
  onOptionClick(option: any): void;
219
246
  toggleAll(): void;
220
247
  onChange: (event: any) => void;
@@ -249,5 +276,5 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
249
276
  private _removeLastValue;
250
277
  isEmptyValue(): boolean;
251
278
  static ɵfac: i0.ɵɵFactoryDeclaration<CpsAutocompleteComponent, [{ optional: true; self: true; }, null]>;
252
- static ɵcmp: i0.ɵɵComponentDeclaration<CpsAutocompleteComponent, "cps-autocomplete", never, { "label": "label"; "placeholder": "placeholder"; "hint": "hint"; "returnObject": "returnObject"; "multiple": "multiple"; "disabled": "disabled"; "width": "width"; "selectAll": "selectAll"; "showChevron": "showChevron"; "chips": "chips"; "closableChips": "closableChips"; "clearable": "clearable"; "openOnClear": "openOnClear"; "options": "options"; "keepInitialOrder": "keepInitialOrder"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionInfo": "optionInfo"; "hideDetails": "hideDetails"; "persistentClear": "persistentClear"; "prefixIcon": "prefixIcon"; "prefixIconSize": "prefixIconSize"; "loading": "loading"; "emptyMessage": "emptyMessage"; "showEmptyMessage": "showEmptyMessage"; "virtualScroll": "virtualScroll"; "numToleratedItems": "numToleratedItems"; "infoTooltip": "infoTooltip"; "infoTooltipClass": "infoTooltipClass"; "infoTooltipMaxWidth": "infoTooltipMaxWidth"; "infoTooltipPersistent": "infoTooltipPersistent"; "infoTooltipPosition": "infoTooltipPosition"; "appearance": "appearance"; "_value": "value"; }, { "valueChanged": "valueChanged"; }, never, never, true, never>;
279
+ static ɵcmp: i0.ɵɵComponentDeclaration<CpsAutocompleteComponent, "cps-autocomplete", never, { "label": "label"; "placeholder": "placeholder"; "hint": "hint"; "returnObject": "returnObject"; "multiple": "multiple"; "disabled": "disabled"; "width": "width"; "selectAll": "selectAll"; "showChevron": "showChevron"; "withOptionsAliases": "withOptionsAliases"; "useOptionsAliasesWhenNoMatch": "useOptionsAliasesWhenNoMatch"; "optionAlias": "optionAlias"; "chips": "chips"; "closableChips": "closableChips"; "clearable": "clearable"; "openOnClear": "openOnClear"; "options": "options"; "keepInitialOrder": "keepInitialOrder"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionInfo": "optionInfo"; "hideDetails": "hideDetails"; "persistentClear": "persistentClear"; "prefixIcon": "prefixIcon"; "prefixIconSize": "prefixIconSize"; "loading": "loading"; "emptyMessage": "emptyMessage"; "showEmptyMessage": "showEmptyMessage"; "virtualScroll": "virtualScroll"; "numToleratedItems": "numToleratedItems"; "externalError": "externalError"; "infoTooltip": "infoTooltip"; "infoTooltipClass": "infoTooltipClass"; "infoTooltipMaxWidth": "infoTooltipMaxWidth"; "infoTooltipPersistent": "infoTooltipPersistent"; "infoTooltipPosition": "infoTooltipPosition"; "appearance": "appearance"; "_value": "value"; }, { "valueChanged": "valueChanged"; "blurred": "blurred"; }, never, never, true, never>;
253
280
  }
@@ -37,12 +37,12 @@ export declare class CpsButtonToggleComponent implements ControlValueAccessor, O
37
37
  */
38
38
  disabled: boolean;
39
39
  /**
40
- * Whether at least one of the options is mandatory.
40
+ * Determines whether at least one of the options is mandatory.
41
41
  * @group Props
42
42
  */
43
43
  mandatory: boolean;
44
44
  /**
45
- * Whether all buttons should have equal widths.
45
+ * Determines whether all buttons should have equal widths.
46
46
  * @group Props
47
47
  */
48
48
  equalWidths: boolean;
@@ -67,7 +67,7 @@ export declare class CpsButtonToggleComponent implements ControlValueAccessor, O
67
67
  */
68
68
  infoTooltipMaxWidth: number | string;
69
69
  /**
70
- * Whether the infoTooltip is persistent.
70
+ * Determines whether the infoTooltip is persistent.
71
71
  * @group Props
72
72
  */
73
73
  infoTooltipPersistent: boolean;
@@ -16,7 +16,7 @@ export declare class CpsCheckboxComponent implements OnInit, ControlValueAccesso
16
16
  */
17
17
  label: string;
18
18
  /**
19
- * Whether checkbox is disabled.
19
+ * Determines whether checkbox is disabled.
20
20
  * @group Props
21
21
  */
22
22
  disabled: boolean;
@@ -36,7 +36,7 @@ export declare class CpsCheckboxComponent implements OnInit, ControlValueAccesso
36
36
  */
37
37
  infoTooltipMaxWidth: number | string;
38
38
  /**
39
- * Whether the infoTooltip is persistent.
39
+ * Determines whether the infoTooltip is persistent.
40
40
  * @group Props
41
41
  */
42
42
  infoTooltipPersistent: boolean;
@@ -32,7 +32,7 @@ export declare class CpsChipComponent implements OnChanges {
32
32
  */
33
33
  closable: boolean;
34
34
  /**
35
- * Whether chip is disabled.
35
+ * Determines whether chip is disabled.
36
36
  * @group Props
37
37
  */
38
38
  disabled: boolean;
@@ -17,7 +17,7 @@ export declare class CpsDatepickerComponent implements ControlValueAccessor, OnI
17
17
  */
18
18
  label: string;
19
19
  /**
20
- * Whether datepicker is disabled.
20
+ * Determines whether datepicker is disabled.
21
21
  * @group Props
22
22
  */
23
23
  disabled: boolean;
@@ -47,17 +47,17 @@ export declare class CpsDatepickerComponent implements ControlValueAccessor, OnI
47
47
  */
48
48
  hideDetails: boolean;
49
49
  /**
50
- * Whether the component should have persistent clear icon.
50
+ * Determines whether the component should have persistent clear icon.
51
51
  * @group Props
52
52
  */
53
53
  persistentClear: boolean;
54
54
  /**
55
- * Whether to show button to be able to select today's date.
55
+ * Determines whether to show button to be able to select today's date.
56
56
  * @group Props
57
57
  */
58
58
  showTodayButton: boolean;
59
59
  /**
60
- * Whether the datepicker dropdown should open on input focus.
60
+ * Determines whether the datepicker dropdown should open on input focus.
61
61
  * @group Props
62
62
  */
63
63
  openOnInputFocus: boolean;
@@ -77,7 +77,7 @@ export declare class CpsDatepickerComponent implements ControlValueAccessor, OnI
77
77
  */
78
78
  infoTooltipMaxWidth: number | string;
79
79
  /**
80
- * Whether the infoTooltip is persistent.
80
+ * Determines whether the infoTooltip is persistent.
81
81
  * @group Props
82
82
  */
83
83
  infoTooltipPersistent: boolean;
@@ -17,7 +17,7 @@ export declare class CpsExpansionPanelComponent implements OnInit {
17
17
  */
18
18
  backgroundColor: string;
19
19
  /**
20
- * Whether to show the chevron icon.
20
+ * Determines whether to show the chevron icon.
21
21
  * @group Props
22
22
  */
23
23
  showChevron: boolean;
@@ -27,7 +27,7 @@ export declare class CpsExpansionPanelComponent implements OnInit {
27
27
  */
28
28
  isExpanded: boolean;
29
29
  /**
30
- * Whether expansion panel is disabled.
30
+ * Determines whether expansion panel is disabled.
31
31
  * @group Props
32
32
  */
33
33
  disabled: boolean;
@@ -32,7 +32,7 @@ export declare class CpsInfoCircleComponent {
32
32
  */
33
33
  tooltipMaxWidth: number | string;
34
34
  /**
35
- * Whether the tooltip is persistent.
35
+ * Determines whether the tooltip is persistent.
36
36
  * @group Props
37
37
  */
38
38
  tooltipPersistent: boolean;
@@ -28,12 +28,12 @@ export declare class CpsInputComponent implements ControlValueAccessor, OnInit,
28
28
  */
29
29
  placeholder: string;
30
30
  /**
31
- * Whether input is disabled.
31
+ * Determines whether input is disabled.
32
32
  * @group Props
33
33
  */
34
34
  disabled: boolean;
35
35
  /**
36
- * Whether input is readonly.
36
+ * Determines whether input is readonly.
37
37
  * @group Props
38
38
  */
39
39
  readonly: boolean;
@@ -83,7 +83,7 @@ export declare class CpsInputComponent implements ControlValueAccessor, OnInit,
83
83
  */
84
84
  hideDetails: boolean;
85
85
  /**
86
- * Whether the component should have persistent clear icon.
86
+ * Determines whether the component should have persistent clear icon.
87
87
  * @group Props
88
88
  */
89
89
  persistentClear: boolean;
@@ -108,7 +108,7 @@ export declare class CpsInputComponent implements ControlValueAccessor, OnInit,
108
108
  */
109
109
  infoTooltipMaxWidth: number | string;
110
110
  /**
111
- * Whether the infoTooltip is persistent.
111
+ * Determines whether the infoTooltip is persistent.
112
112
  * @group Props
113
113
  */
114
114
  infoTooltipPersistent: boolean;
@@ -21,7 +21,7 @@ export declare class CpsLoaderComponent implements OnInit {
21
21
  */
22
22
  labelColor: string;
23
23
  /**
24
- * Whether to show 'Loading...' label.
24
+ * Determines whether to show 'Loading...' label.
25
25
  * @group Props
26
26
  */
27
27
  showLabel: boolean;
@@ -40,7 +40,7 @@ export declare class CpsMenuComponent implements AfterViewInit, OnDestroy, OnCha
40
40
  */
41
41
  items: CpsMenuItem[];
42
42
  /**
43
- * Whether to include top pointing arrow on the menu.
43
+ * Determines whether to include top pointing arrow on the menu.
44
44
  * @group Props
45
45
  */
46
46
  withArrow: boolean;
@@ -50,12 +50,12 @@ export declare class CpsMenuComponent implements AfterViewInit, OnDestroy, OnCha
50
50
  */
51
51
  compressed: boolean;
52
52
  /**
53
- * Whether the menu should show on target element focus.
53
+ * Determines whether the menu should show on target element focus.
54
54
  * @group Props
55
55
  */
56
56
  focusOnShow: boolean;
57
57
  /**
58
- * Whether the menu should be persistent.
58
+ * Determines whether the menu should be persistent.
59
59
  * @group Props
60
60
  */
61
61
  persistent: boolean;
@@ -27,7 +27,7 @@ export declare class CpsPaginatorComponent implements OnInit {
27
27
  */
28
28
  rowsPerPageOptions: number[];
29
29
  /**
30
- * Whether to show it even there is only one page.
30
+ * Determines whether to show it even there is only one page.
31
31
  * @group Props
32
32
  */
33
33
  alwaysShow: boolean;
@@ -37,7 +37,7 @@ export declare class CpsPaginatorComponent implements OnInit {
37
37
  */
38
38
  backgroundColor: string;
39
39
  /**
40
- * Whether to reset page index when the number of rows per page changes.
40
+ * Determines whether to reset page index when the number of rows per page changes.
41
41
  * @group Props
42
42
  */
43
43
  resetPageOnRowsChange: boolean;
@@ -13,12 +13,12 @@ export declare class CpsRadioButtonComponent {
13
13
  */
14
14
  option: CpsRadioOption;
15
15
  /**
16
- * Whether the radio button is checked.
16
+ * Determines whether the radio button is checked.
17
17
  * @group Props
18
18
  */
19
19
  checked: boolean;
20
20
  /**
21
- * Whether the radio button is disabled.
21
+ * Determines whether the radio button is disabled.
22
22
  * @group Props
23
23
  */
24
24
  groupDisabled: boolean;
@@ -26,12 +26,12 @@ export declare class CpsRadioGroupComponent implements ControlValueAccessor {
26
26
  */
27
27
  groupLabel: string;
28
28
  /**
29
- * Whether the radio group should be vertical.
29
+ * Determines whether the radio group should be vertical.
30
30
  * @group Props
31
31
  */
32
32
  vertical: boolean;
33
33
  /**
34
- * Whether the radio group is disabled.
34
+ * Determines whether the radio group is disabled.
35
35
  * @group Props
36
36
  */
37
37
  disabled: boolean;
@@ -51,7 +51,7 @@ export declare class CpsRadioGroupComponent implements ControlValueAccessor {
51
51
  */
52
52
  infoTooltipMaxWidth: number | string;
53
53
  /**
54
- * Whether the infoTooltip is persistent.
54
+ * Determines whether the infoTooltip is persistent.
55
55
  * @group Props
56
56
  */
57
57
  infoTooltipPersistent: boolean;
@@ -58,7 +58,7 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
58
58
  */
59
59
  chips: boolean;
60
60
  /**
61
- * Whether the chips can be directly removed.
61
+ * Determines whether the chips can be directly removed.
62
62
  * @group Props
63
63
  */
64
64
  closableChips: boolean;
@@ -68,7 +68,7 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
68
68
  */
69
69
  clearable: boolean;
70
70
  /**
71
- * Whether the dropdown list should open on clear.
71
+ * Determines whether the dropdown list should open on clear.
72
72
  * @group Props
73
73
  */
74
74
  openOnClear: boolean;
@@ -78,7 +78,7 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
78
78
  */
79
79
  options: any[];
80
80
  /**
81
- * If multiple, defines whether selected options should be ordered according to the initial order of the options.
81
+ * If multiple, determines whether selected options should be ordered according to the initial order of the options.
82
82
  * @group Props
83
83
  */
84
84
  keepInitialOrder: boolean;
@@ -103,7 +103,7 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
103
103
  */
104
104
  hideDetails: boolean;
105
105
  /**
106
- * Whether the component should have persistent clear icon.
106
+ * Determines whether the component should have persistent clear icon.
107
107
  * @group Props
108
108
  */
109
109
  persistentClear: boolean;
@@ -123,7 +123,7 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
123
123
  */
124
124
  loading: boolean;
125
125
  /**
126
- * Whether only the elements within scrollable area should be added into the DOM.
126
+ * Determines whether only the elements within scrollable area should be added into the DOM.
127
127
  * @group Props
128
128
  */
129
129
  virtualScroll: boolean;
@@ -148,7 +148,7 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
148
148
  */
149
149
  infoTooltipMaxWidth: number | string;
150
150
  /**
151
- * Whether the infoTooltip is persistent.
151
+ * Determines whether the infoTooltip is persistent.
152
152
  * @group Props
153
153
  */
154
154
  infoTooltipPersistent: boolean;
@@ -27,7 +27,7 @@ export declare class CpsSidebarMenuComponent implements OnInit {
27
27
  */
28
28
  isExpanded: boolean;
29
29
  /**
30
- * Whether the menu items should allow activating only exact links.
30
+ * Determines whether the menu items should allow activating only exact links.
31
31
  * @group Props
32
32
  */
33
33
  exactRoutes: boolean;
@@ -16,12 +16,12 @@ export declare class CpsTabComponent {
16
16
  */
17
17
  icon: string;
18
18
  /**
19
- * Whether tab is disabled.
19
+ * Determines whether tab is disabled.
20
20
  * @group Props
21
21
  */
22
22
  disabled: boolean;
23
23
  /**
24
- * Whether to show the tooltip on tab hover.
24
+ * Determines whether to show the tooltip on tab hover.
25
25
  * @group Props
26
26
  */
27
27
  tooltipText: string;
@@ -36,7 +36,7 @@ export declare class CpsTabComponent {
36
36
  */
37
37
  tooltipMaxWidth: number | string;
38
38
  /**
39
- * Whether the tooltip should have persistent info.
39
+ * Determines whether the tooltip should have persistent info.
40
40
  * @group Props
41
41
  */
42
42
  tooltipPersistent: boolean;
@@ -19,7 +19,7 @@ export declare class CpsTabGroupComponent implements OnInit, AfterContentInit, A
19
19
  */
20
20
  selectedIndex: number;
21
21
  /**
22
- * Whether to apply an alternative 'subtabs' styling.
22
+ * Determines whether to apply an alternative 'subtabs' styling.
23
23
  * @group Props
24
24
  */
25
25
  isSubTabs: boolean;
@@ -25,27 +25,27 @@ export declare class TableColumnFilterComponent implements OnInit, OnDestroy {
25
25
  */
26
26
  type: CpsColumnFilterType;
27
27
  /**
28
- * Whether the filter menu should be persistent.
28
+ * Determines whether the filter menu should be persistent.
29
29
  * @group Props
30
30
  */
31
31
  persistent: boolean;
32
32
  /**
33
- * Whether the filter should have clear button.
33
+ * Determines whether the filter should have clear button.
34
34
  * @group Props
35
35
  */
36
36
  showClearButton: boolean;
37
37
  /**
38
- * Whether the filter should have apply button.
38
+ * Determines whether the filter should have apply button.
39
39
  * @group Props
40
40
  */
41
41
  showApplyButton: boolean;
42
42
  /**
43
- * Whether the filter should have close button.
43
+ * Determines whether the filter should have close button.
44
44
  * @group Props
45
45
  */
46
46
  showCloseButton: boolean;
47
47
  /**
48
- * Whether the filter should have match modes.
48
+ * Determines whether the filter should have match modes.
49
49
  * @group Props
50
50
  */
51
51
  showMatchModes: boolean;
@@ -55,7 +55,7 @@ export declare class TableColumnFilterComponent implements OnInit, OnDestroy {
55
55
  */
56
56
  matchModes: CpsColumnFilterMatchMode[];
57
57
  /**
58
- * Whether the filter should have operator.
58
+ * Determines whether the filter should have operator.
59
59
  * @group Props
60
60
  */
61
61
  showOperator: boolean;
@@ -70,7 +70,7 @@ export declare class TableColumnFilterComponent implements OnInit, OnDestroy {
70
70
  */
71
71
  headerTitle: string;
72
72
  /**
73
- * Whether the filter should hide on clear.
73
+ * Determines whether the filter should hide on clear.
74
74
  * @group Props
75
75
  */
76
76
  hideOnClear: boolean;
@@ -80,7 +80,7 @@ export declare class TableColumnFilterComponent implements OnInit, OnDestroy {
80
80
  */
81
81
  categoryOptions: CpsColumnFilterCategoryOption[] | string[];
82
82
  /**
83
- * Whether to show category filter as button toggles.
83
+ * Determines whether to show category filter as button toggles.
84
84
  * @group Props
85
85
  */
86
86
  asButtonToggle: boolean;
@@ -34,7 +34,7 @@ export declare class TableColumnFilterConstraintComponent implements OnChanges {
34
34
  */
35
35
  categoryOptions: CpsColumnFilterCategoryOption[] | string[];
36
36
  /**
37
- * Whether to show category filter as button toggles.
37
+ * Determines whether to show category filter as button toggles.
38
38
  * @group Props
39
39
  */
40
40
  asButtonToggle: boolean;
@@ -49,7 +49,7 @@ export declare class TableColumnFilterConstraintComponent implements OnChanges {
49
49
  */
50
50
  placeholder: string;
51
51
  /**
52
- * Whether the filter should have an apply button.
52
+ * Determines whether the filter should have an apply button.
53
53
  * @group Props
54
54
  */
55
55
  hasApplyButton: boolean;